Classes / Constructors

<?php

class Man {
    public $name = "";

    function __construct(string $name) {
        $this->name = $name;
    }
}

class Employee extends Man {
    public $position = "";

    function __construct(string $name) { 
        parent::__construct($name);
        $this->position = "unknown";
    }
}

$employee = new Employee("Max");

echo $employee->name"\n", $employee->position;