getShortcutName() public method

Return shortcut method name
public getShortcutName ( ) : mixed
return mixed
Example #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();
     }
 }