Zephir\ClassDefinition::getInitMethod PHP Метод

getInitMethod() публичный Метод

Returns the initialization method if any does exist
public getInitMethod ( ) : ClassMethod
Результат ClassMethod
    public function getInitMethod()
    {
        $initClassName = $this->getCNamespace() . '_' . $this->getName();
        return $this->getMethod('zephir_init_properties_' . $initClassName);
    }