/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
tests/View/Blade/BladeSectionTest.php
13 строк
564 B
Iman
[9.x] Fixes blade tags issue #45424 (#45490)
10 янв 2023, 17:07
Не верифицирован
10 янв 2023, 17:07
e4fdb29
Код
Авторство
О чём код?
<?php namespace Illuminate\Tests\View\Blade; class BladeSectionTest extends AbstractBladeTestCase { public function testSectionStartsAreCompiled() { $this->assertSame('<?php $__env->startSection(\'foo\'); ?>', $this->compiler->compileString('@section(\'foo\')')); $this->assertSame('<?php $__env->startSection(\'issue#18317 :))\'); ?>', $this->compiler->compileString('@section(\'issue#18317 :))\')')); $this->assertSame('<?php $__env->startSection(name(foo)); ?>', $this->compiler->compileString('@section(name(foo))')); } }