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

__construct() public method

Creates a new PHP function
public __construct ( string $name = null )
$name string qualified name
    public function __construct($name = null)
    {
        $this->setQualifiedName($name);
        $this->docblock = new Docblock();
        $this->initParameters();
    }