Zephir\ClassMethod::isDeprecated PHP Method

isDeprecated() public method

public isDeprecated ( )
    public function isDeprecated()
    {
        return !empty($this->visibility) && in_array('deprecated', $this->visibility, true);
    }

Usage Example

Esempio n. 1
0
 public function __construct(ClassMethod $method, AliasManager $aliasManager, $indent = '    ')
 {
     parent::__construct($method->getDocBlock(), $indent);
     $this->deprecated = $method->isDeprecated();
     $this->aliasManager = $aliasManager;
     $this->shortcutName = $method->isShortcut() ? $method->getShortcutName() : '';
     $this->parseMethodParameters($method);
     $this->parseLines();
     $this->parseMethodReturnType($method);
     $this->appendParametersLines();
     if (!empty($this->return)) {
         $this->appendReturnLine();
     }
 }