$currentClass
$currentClass :
PassCollector is an abstract compiler pass for visiting source code and build the graph with the help of a Context
It feels like a Mediator between the two Context and concrete PassCollector (It is not one because Context and concrete PassCollector do not share a common interface)
__construct(\Trismegiste\Mondrian\Transform\ReflectionContext $ref, \Trismegiste\Mondrian\Transform\GraphContext $grf, \Trismegiste\Mondrian\Graph\Graph $g)
| \Trismegiste\Mondrian\Transform\ReflectionContext | $ref | |
| \Trismegiste\Mondrian\Transform\GraphContext | $grf | |
| \Trismegiste\Mondrian\Graph\Graph | $g |
findVertex(string $type, string $key) : \Trismegiste\Mondrian\Graph\Vertex
Find a vertex by its type and name
| string | $type | |
| string | $key |
or null
indicesVertex( $typ, $index, \Trismegiste\Mondrian\Graph\Vertex $v)
See Context
| $typ | ||
| $index | ||
| \Trismegiste\Mondrian\Graph\Vertex | $v |