GraphAware\Neo4j\Client\Formatter\Type\Node::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( integer $id, array $labels, array $properties )
$id integer
$labels array
$properties array
    public function __construct($id, array $labels, array $properties)
    {
        $this->id = $id;
        $this->labels = $labels;
        $this->properties = $properties;
    }