PHPSA\ControlFlow\Graph\Edge::__construct PHP Метод

__construct() публичный Метод

public __construct ( Node $source, Node $destination = null, integer $type )
$source Node
$destination Node
$type integer
    public function __construct(Node $source, Node $destination = null, $type = -1)
    {
        $this->source = $source;
        $this->destination = $destination;
        $this->type = $type;
    }