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

hasCallOrCallStaticMethod() public method

public hasCallOrCallStaticMethod ( 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 '__call' or '__callStatic' method
    public function hasCallOrCallStaticMethod(CodeBase $code_base)
    {
        return $this->hasCallMethod($code_base) || $this->hasCallStaticMethod($code_base);
    }