__construct() public method

Ctor
public __construct ( array $visitor, ReflectionContext $ref, GraphContext $grf, Trismegiste\Mondrian\Graph\Graph $g )
$visitor array a list of State
$ref Trismegiste\Mondrian\Transform\ReflectionContext
$grf Trismegiste\Mondrian\Transform\GraphContext
$g Trismegiste\Mondrian\Graph\Graph
コード例 #1
0
ファイル: Collector.php プロジェクト: trismegiste/mondrian
 public function __construct(ReflectionContext $ref, GraphContext $grf, Graph $g)
 {
     $visitor = [new \Trismegiste\Mondrian\Visitor\State\PackageLevel(), new FileLevel(), new ClassLevel(), new InterfaceLevel(), new TraitLevel()];
     parent::__construct($visitor, $ref, $grf, $g);
 }