| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function __construct(ParserCacheInterface $parser = null, array $providers = []) |
||
| 13 | { |
||
| 14 | // prepend the default provider to let users override it easily |
||
| 15 | array_unshift($providers, new NumberExpressionLanguageProvider(), new StringExpressionLanguageProvider()); |
||
| 16 | |||
| 17 | parent::__construct($parser, $providers); |
||
|
|
|||
| 18 | } |
||
| 20 |