1 | <?php |
||
7 | final class ShopExtension extends \Twig_Extension |
||
8 | { |
||
9 | /** |
||
10 | * @var bool |
||
11 | */ |
||
12 | private $isShopEnabled; |
||
13 | |||
14 | /** |
||
15 | * @param bool $isShopEnabled |
||
16 | */ |
||
17 | public function __construct(bool $isShopEnabled) |
||
21 | |||
22 | /** |
||
23 | * @return array|\Twig_Function[] |
||
24 | */ |
||
25 | public function getFunctions(): array |
||
33 | } |
||
34 |