We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8721859 + bd38e05 commit a4d1c1bCopy full SHA for a4d1c1b
src/Compiler/FakeRun.php
@@ -20,6 +20,8 @@
20
use function class_exists;
21
use function is_callable;
22
use function is_object;
23
+use function ob_end_clean;
24
+use function ob_start;
25
use function property_exists;
26
27
class FakeRun
@@ -67,7 +69,9 @@ public function __invoke(): void
67
69
/** @var NullPage $ro */
68
70
$ro = $app->resource->get->object($ro)(['required' => 'string']);
71
assert($app->responder instanceof TransferInterface);
72
+ ob_start();
73
$ro->transfer($app->responder, []);
74
+ ob_end_clean();
75
class_exists(HttpCacheInterface::class);
76
class_exists(HttpCache::class);
77
class_exists(HttpResponder::class);
0 commit comments