Phan\Language\Element\Clazz::hasSetMethod PHP Méthode

hasSetMethod() public méthode

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