Movies\Person::__construct PHP Method

__construct() public method

public __construct ( string $name, integer | null $born = null )
$name string
$born integer | null
    public function __construct($name, $born = null)
    {
        $this->name = $name;
        $this->born = $born;
        $this->movies = new ArrayCollection();
    }