| 1 | <?php |
||
| 9 | class AccessCollectorVisitor extends Visitor |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | private $accesses = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * {@inheritdoc} |
||
| 18 | */ |
||
| 19 | public function getCompilationData(): array |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function visitAccess(AST\Bag\Context $element, &$handle = null, $eldnah = null) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function visitModel(AST\Model $element, &$handle = null, $eldnah = null) |
||
| 43 | } |
||
| 44 |