Phan\Language\Element\Clazz::getCallStaticMethod PHP Method

getCallStaticMethod() public method

public getCallStaticMethod ( CodeBase $code_base ) : Method
$code_base Phan\CodeBase The entire code base from which we'll find ancestor details
return Method The magic `__callStatic` method
    public function getCallStaticMethod(CodeBase $code_base)
    {
        return $this->getMethodByName($code_base, '__callStatic');
    }