WowPress-Tailwind/theme/vendor/illuminate/view/Compilers/Concerns/CompilesComments.php

20 lines
413 B
PHP
Raw Normal View History

2024-04-15 23:07:29 +02:00
<?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);
}
}