GraphAware\Neo4j\OGM\Tests\Integration\Model\Person::__construct PHP Method

__construct() public method

public __construct ( $name = null )
    public function __construct($name = null)
    {
        if (null !== $name) {
            $this->name = $name;
        }
        $this->roles = new ArrayCollection();
        $this->movies = new ArrayCollection();
    }