2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2011-05-27 18:20:44 +02:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
2015-06-01 18:32:25 +02:00
|
|
|
use PhpParser\Node\FunctionLike;
|
2014-02-06 14:44:16 +01:00
|
|
|
|
2015-06-01 18:32:25 +02:00
|
|
|
class ClassMethod extends Node\Stmt implements FunctionLike
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2016-07-25 13:33:19 +02:00
|
|
|
/** @var int Flags */
|
|
|
|
public $flags;
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var bool Whether to return by reference */
|
|
|
|
public $byRef;
|
2017-04-28 19:09:39 +02:00
|
|
|
/** @var Node\Identifier Name */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $name;
|
|
|
|
/** @var Node\Param[] Parameters */
|
|
|
|
public $params;
|
2019-10-25 21:35:43 +02:00
|
|
|
/** @var null|Node\Identifier|Node\Name|Node\NullableType|Node\UnionType Return type */
|
2015-03-12 13:17:31 +01:00
|
|
|
public $returnType;
|
2017-11-01 20:26:21 +01:00
|
|
|
/** @var Node\Stmt[]|null Statements */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $stmts;
|
2020-09-13 21:01:17 +02:00
|
|
|
/** @var Node\AttributeGroup[] PHP attribute groups */
|
|
|
|
public $attrGroups;
|
2011-10-28 19:06:24 +02:00
|
|
|
|
2017-08-13 14:06:08 +02:00
|
|
|
private static $magicNames = [
|
2017-04-22 14:37:53 +02:00
|
|
|
'__construct' => true,
|
|
|
|
'__destruct' => true,
|
|
|
|
'__call' => true,
|
|
|
|
'__callstatic' => true,
|
|
|
|
'__get' => true,
|
|
|
|
'__set' => true,
|
|
|
|
'__isset' => true,
|
|
|
|
'__unset' => true,
|
|
|
|
'__sleep' => true,
|
|
|
|
'__wakeup' => true,
|
|
|
|
'__tostring' => true,
|
|
|
|
'__set_state' => true,
|
|
|
|
'__clone' => true,
|
|
|
|
'__invoke' => true,
|
|
|
|
'__debuginfo' => true,
|
2017-08-13 14:06:08 +02:00
|
|
|
];
|
2017-04-22 14:37:53 +02:00
|
|
|
|
2011-10-28 19:06:24 +02:00
|
|
|
/**
|
|
|
|
* Constructs a class method node.
|
|
|
|
*
|
2017-04-28 19:09:39 +02:00
|
|
|
* @param string|Node\Identifier $name Name
|
|
|
|
* @param array $subNodes Array of the following optional subnodes:
|
|
|
|
* 'flags => MODIFIER_PUBLIC: Flags
|
|
|
|
* 'byRef' => false : Whether to return by reference
|
|
|
|
* 'params' => array() : Parameters
|
|
|
|
* 'returnType' => null : Return type
|
|
|
|
* 'stmts' => array() : Statements
|
2020-09-13 21:01:17 +02:00
|
|
|
* 'attrGroups' => array() : PHP attribute groups
|
2017-04-28 19:09:39 +02:00
|
|
|
* @param array $attributes Additional attributes
|
2011-10-28 19:06:24 +02:00
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct($name, array $subNodes = [], array $attributes = []) {
|
2019-05-12 14:55:21 +02:00
|
|
|
$this->attributes = $attributes;
|
2017-04-24 22:32:40 +02:00
|
|
|
$this->flags = $subNodes['flags'] ?? $subNodes['type'] ?? 0;
|
|
|
|
$this->byRef = $subNodes['byRef'] ?? false;
|
2017-04-28 19:09:39 +02:00
|
|
|
$this->name = \is_string($name) ? new Node\Identifier($name) : $name;
|
2017-08-13 14:06:08 +02:00
|
|
|
$this->params = $subNodes['params'] ?? [];
|
2017-04-28 19:09:39 +02:00
|
|
|
$returnType = $subNodes['returnType'] ?? null;
|
|
|
|
$this->returnType = \is_string($returnType) ? new Node\Identifier($returnType) : $returnType;
|
2017-08-13 14:06:08 +02:00
|
|
|
$this->stmts = array_key_exists('stmts', $subNodes) ? $subNodes['stmts'] : [];
|
2020-09-13 21:01:17 +02:00
|
|
|
$this->attrGroups = $subNodes['attrGroups'] ?? [];
|
2011-08-04 12:03:34 +02:00
|
|
|
}
|
2012-07-07 16:08:37 +02:00
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2020-09-13 21:01:17 +02:00
|
|
|
return ['attrGroups', 'flags', 'byRef', 'name', 'params', 'returnType', 'stmts'];
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function returnsByRef() : bool {
|
2015-06-01 18:32:25 +02:00
|
|
|
return $this->byRef;
|
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getParams() : array {
|
2015-06-01 18:32:25 +02:00
|
|
|
return $this->params;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getReturnType() {
|
|
|
|
return $this->returnType;
|
|
|
|
}
|
|
|
|
|
2017-05-07 19:54:32 +02:00
|
|
|
public function getStmts() {
|
2015-06-01 18:32:25 +02:00
|
|
|
return $this->stmts;
|
|
|
|
}
|
|
|
|
|
2020-09-13 21:01:17 +02:00
|
|
|
public function getAttrGroups() : array {
|
|
|
|
return $this->attrGroups;
|
|
|
|
}
|
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Whether the method is explicitly or implicitly public.
|
|
|
|
*
|
2017-01-24 08:38:55 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isPublic() : bool {
|
2016-07-25 13:33:19 +02:00
|
|
|
return ($this->flags & Class_::MODIFIER_PUBLIC) !== 0
|
2017-04-19 11:20:05 +02:00
|
|
|
|| ($this->flags & Class_::VISIBILITY_MODIFIER_MASK) === 0;
|
2012-07-07 16:08:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Whether the method is protected.
|
|
|
|
*
|
2017-01-24 08:38:55 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isProtected() : bool {
|
2016-07-25 13:33:19 +02:00
|
|
|
return (bool) ($this->flags & Class_::MODIFIER_PROTECTED);
|
2012-07-07 16:08:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Whether the method is private.
|
|
|
|
*
|
2017-01-24 08:38:55 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isPrivate() : bool {
|
2016-07-25 13:33:19 +02:00
|
|
|
return (bool) ($this->flags & Class_::MODIFIER_PRIVATE);
|
2012-07-07 16:08:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Whether the method is abstract.
|
|
|
|
*
|
2017-01-24 08:38:55 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isAbstract() : bool {
|
2016-07-25 13:33:19 +02:00
|
|
|
return (bool) ($this->flags & Class_::MODIFIER_ABSTRACT);
|
2012-07-07 16:08:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Whether the method is final.
|
2020-09-13 21:01:17 +02:00
|
|
|
*
|
2017-01-24 08:38:55 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isFinal() : bool {
|
2016-07-25 13:33:19 +02:00
|
|
|
return (bool) ($this->flags & Class_::MODIFIER_FINAL);
|
2012-07-07 16:08:37 +02:00
|
|
|
}
|
|
|
|
|
2017-01-24 08:38:55 +01:00
|
|
|
/**
|
2017-01-26 00:16:54 +01:00
|
|
|
* Whether the method is static.
|
|
|
|
*
|
2017-01-24 08:38:55 +01:00
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isStatic() : bool {
|
2016-07-25 13:33:19 +02:00
|
|
|
return (bool) ($this->flags & Class_::MODIFIER_STATIC);
|
2012-07-07 16:08:37 +02:00
|
|
|
}
|
2017-04-22 14:37:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether the method is magic.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function isMagic() : bool {
|
2017-08-15 22:48:24 +02:00
|
|
|
return isset(self::$magicNames[$this->name->toLowerString()]);
|
2017-04-22 14:37:53 +02:00
|
|
|
}
|
2020-09-13 21:01:17 +02:00
|
|
|
|
2018-01-10 18:57:48 +01:00
|
|
|
public function getType() : string {
|
2017-11-12 21:25:57 +01:00
|
|
|
return 'Stmt_ClassMethod';
|
|
|
|
}
|
2014-01-23 13:33:02 +01:00
|
|
|
}
|