1 code examples of PHP WyriHaximus\TwigView\Lib\Scanner extracted from open source projects
/**
* Compile all templates.
*/
public function all(): void
{
$this->out('<info>Compiling all templates</info>');
foreach (Scanner::all() as $section => $templates) {
$this->out('<info>Compiling ' . $section . '\'s templates</info>');
$this->walkIterator($templates);
}
}