gossi\codegen\model\PhpClass::__construct PHP 메소드

__construct() 공개 메소드

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();
    }