| 1 | <?php |
||
| 7 | class ExpressionLanguage extends SymfonyExpressionLanguage |
||
| 8 | { |
||
| 9 | /** @var Parser */ |
||
| 10 | protected $parser; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * {@inheritdoc} |
||
| 14 | */ |
||
| 15 | 1 | public function __construct($cache = null, array $providers = array()) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * Hack to keep functions in parser up to date. |
||
| 36 | * |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | 1 | public function register($name, callable $compiler, callable $evaluator) |
|
| 44 | } |
||
| 45 |