We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 9 | class ExpressionLanguage extends BaseExpressionLanguage |
||
| 10 | { |
||
| 11 | public const KNOWN_NAMES = ['value', 'args', 'context', 'info', 'object']; |
||
| 12 | |||
| 13 | private $globalNames = []; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param $index |
||
| 17 | * @param $name |
||
| 18 | */ |
||
| 19 | 63 | public function addGlobalName($index, $name): void |
|
| 23 | |||
| 24 | 2 | public function getGlobalNames() |
|
| 28 | |||
| 29 | 50 | public function compile($expression, $names = []) |
|
| 33 | } |
||
| 34 |