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

hasCallStaticMethod() public method

public hasCallStaticMethod ( CodeBase $code_base ) : boolean
$code_base Phan\CodeBase The entire code base from which we'll find ancestor details
return boolean True if this class has a magic '__callStatic' method
    public function hasCallStaticMethod(CodeBase $code_base)
    {
        return $this->hasMethodWithName($code_base, '__callStatic');
    }