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

__construct() public method

public __construct ( $title = null )
    public function __construct($title = null)
    {
        if (null !== $title) {
            $this->title = $title;
        }
        $this->actors = new ArrayCollection();
        $this->players = new ArrayCollection();
    }