1 | <?php |
||
9 | class ExpressionLanguage extends SymfonyExpressionLanguage |
||
10 | { |
||
11 | /** @var Parser */ |
||
12 | protected $parser; |
||
13 | |||
14 | /** |
||
15 | 1 | * {@inheritdoc} |
|
16 | * @throws ReflectionException |
||
17 | 1 | */ |
|
18 | public function __construct($cache = null, array $providers = array()) |
||
36 | |||
37 | /** |
||
38 | * Hack to keep functions in parser up to date. |
||
39 | 1 | * |
|
40 | * {@inheritdoc} |
||
41 | 1 | */ |
|
42 | 1 | public function register($name, callable $compiler, callable $evaluator): void |
|
47 | } |
||
48 |