| 1 | <?php |
||
| 9 | class MobileTemplateFinder implements TemplateFinderInterface |
||
| 10 | { |
||
| 11 | const PHP_EXT = '.php'; |
||
| 12 | |||
| 13 | const MOBILE_EXT = '.mobile.twig'; |
||
| 14 | |||
| 15 | const TWIG_EXT = '.html.twig'; |
||
| 16 | |||
| 17 | private $userAgent; |
||
| 18 | |||
| 19 | 3 | public function __construct($userAgent = null) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | 2 | public function __invoke($name) |
|
| 40 | } |
||
| 41 |