Movies\Movie::__construct PHP Method

__construct() public method

public __construct ( string $title, string | null $release = null )
$title string
$release string | null
    public function __construct($title, $release = null)
    {
        $this->title = $title;
        $this->release = $release;
        $this->actors = new ArrayCollection();
    }