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

__construct() public method

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