Skip to content

Commit eb41172

Browse files
Fix code style (#39488)
1 parent 97b4184 commit eb41172

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/View/Blade/BladeVerbatimTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function testMultilineTemplatesWithRawBlocksAreRenderedInTheRightOrder()
5858
@include("users")
5959
@verbatim
6060
{{ $fourth }} @include("test")
61-
@endverbatim
61+
@endverbatim
6262
@php echo $fifth; @endphp';
6363

6464
$expected = '<?php echo e($first); ?>
@@ -73,7 +73,7 @@ public function testMultilineTemplatesWithRawBlocksAreRenderedInTheRightOrder()
7373
<?php echo $__env->make("users", \Illuminate\Support\Arr::except(get_defined_vars(), [\'__data\', \'__path\']))->render(); ?>
7474
7575
{{ $fourth }} @include("test")
76-
76+
7777
<?php echo $fifth; ?>';
7878

7979
$this->assertSame($expected, $this->compiler->compileString($string));

0 commit comments

Comments
 (0)