| 1 | <?php |
||
| 18 | class Any extends Variable { |
||
| 19 | /** |
||
| 20 | * @var Variable[] |
||
| 21 | */ |
||
| 22 | protected $variables; |
||
| 23 | |||
| 24 | 11 | public function __construct(array $variables) { |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritdocs |
||
| 31 | */ |
||
| 32 | 49 | public function meaning() { |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritdocs |
||
| 39 | */ |
||
| 40 | 7 | public function compile() { |
|
| 54 | } |
||
| 55 | |||
| 56 |