function __construct()

in workshop/07_Debugging/Code/Person.php [14:18]


    function __construct($name, $age = 30)
    {
        $this->_name = $name;
        $this->_age = $age;
    }