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

hasCallMethod() public method

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