Programming Language PHP

Namespace WyriHaximus\TwigView\Lib

Class Scanner

Total Examples 1

1 code examples of PHP WyriHaximus\TwigView\Lib\Scanner extracted from open source projects

Was this example useful?
0
                                                    /**
     * 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);
        }
    }
                                            
Scanner's Other Methods
Scanner's Other Methods