Skip to content

Commit 9128b19

Browse files
CS fixes
1 parent 40029f9 commit 9128b19

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/View/Blade/BladeEchoHandlerTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ public function testHandlerWorksWithNonStringables($blade, $expectedOutput)
8686
return $this->compiler;
8787
});
8888

89-
// We output to the buffer to avoid outputting in the test console.
9089
ob_start();
9190
eval(Str::of($this->compiler->compileString($blade))->remove(['<?php', '?>']));
9291
$output = ob_get_contents();
@@ -100,7 +99,7 @@ public function nonStringableDataProvider()
10099
return [
101100
['{{"foo" . "bar"}}', 'foobar'],
102101
['{{ 1 + 2 }}{{ "test"; }}', '3test'],
103-
['@php($test = "hi"){{ $test }}', 'hi']
102+
['@php($test = "hi"){{ $test }}', 'hi'],
104103
];
105104
}
106105
}

0 commit comments

Comments
 (0)