Programming Language PHP
Namespace WyriHaximus\TwigView\Lib
Class Scanner
Method/Function all
Total Examples 1
1 code examples of PHP WyriHaximus\TwigView\Lib\Scanner::all 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);
}
}