gossi\codegen\model\PhpClass::__construct PHP Method

__construct() public method

Creates a new PHP class
public __construct ( string $name = null )
$name string the qualified name
    public function __construct($name = null)
    {
        parent::__construct($name);
        $this->initProperties();
        $this->initConstants();
        $this->initInterfaces();
    }