/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/View/Compilers/Concerns/CompilesComments.php
19 строк
413 B
Duilio Palacios
Update compileComments docblock to reflect it compiles blade comments into empty strings (#17954)
16 фев 2017, 16:52
16 фев 2017, 16:52
031fd60
Код
Авторство
О чём код?
<?php namespace Illuminate\View\Compilers\Concerns; trait CompilesComments { /** * Compile Blade comments into an empty string. * * @param string $value * @return string */ protected function compileComments($value) { $pattern = sprintf('/%s--(.*?)--%s/s', $this->contentTags[0], $this->contentTags[1]); return preg_replace($pattern, '', $value); } }