| 1 | <?php |
||
| 8 | class FinderFunction extends TwigFilesystem |
||
| 9 | { |
||
| 10 | public function __invoke (Twig_Environment $env, $folderLocation) |
||
| 11 | { |
||
| 12 | parent::__invoke($env, $folderLocation); |
||
| 13 | |||
| 14 | $finder = new Finder(); |
||
| 15 | $finder->in($folderLocation); |
||
| 16 | |||
| 17 | return $finder; |
||
| 18 | } |
||
| 19 | |||
| 20 | 1 | public static function get () |
|
| 26 | } |