2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2015-01-31 22:59:38 +01:00
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
2017-01-20 23:45:54 +01:00
|
|
|
/**
|
|
|
|
* @property Node\Name $namespacedName Namespaced name (if using NameResolver)
|
|
|
|
*/
|
2018-01-10 17:24:26 +01:00
|
|
|
abstract class ClassLike extends Node\Stmt
|
|
|
|
{
|
2017-04-28 19:09:39 +02:00
|
|
|
/** @var Node\Identifier|null Name */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $name;
|
2017-01-19 22:46:28 +01:00
|
|
|
/** @var Node\Stmt[] Statements */
|
2015-02-28 18:44:28 +01:00
|
|
|
public $stmts;
|
|
|
|
|
2019-08-31 00:36:19 +02:00
|
|
|
/**
|
|
|
|
* @return TraitUse[]
|
|
|
|
*/
|
|
|
|
public function getTraitUses() : array {
|
|
|
|
$traitUses = [];
|
|
|
|
foreach ($this->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof TraitUse) {
|
|
|
|
$traitUses[] = $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $traitUses;
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:37:35 +02:00
|
|
|
/**
|
|
|
|
* @return ClassConst[]
|
|
|
|
*/
|
|
|
|
public function getConstants() : array {
|
|
|
|
$constants = [];
|
|
|
|
foreach ($this->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof ClassConst) {
|
|
|
|
$constants[] = $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $constants;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return Property[]
|
|
|
|
*/
|
|
|
|
public function getProperties() : array {
|
|
|
|
$properties = [];
|
|
|
|
foreach ($this->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof Property) {
|
|
|
|
$properties[] = $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $properties;
|
|
|
|
}
|
|
|
|
|
2019-12-27 16:16:17 +01:00
|
|
|
/**
|
|
|
|
* Gets property with the given name defined directly in this class/interface/trait.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the property
|
|
|
|
*
|
|
|
|
* @return Property|null Property node or null if the property does not exist
|
|
|
|
*/
|
|
|
|
public function getProperty(string $name) {
|
|
|
|
foreach ($this->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof Property) {
|
|
|
|
foreach ($stmt->props as $prop) {
|
|
|
|
if ($prop instanceof PropertyProperty && $name === $prop->name->toString()) {
|
|
|
|
return $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-07-14 17:07:45 +02:00
|
|
|
/**
|
|
|
|
* Gets all methods defined directly in this class/interface/trait
|
|
|
|
*
|
|
|
|
* @return ClassMethod[]
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getMethods() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
$methods = [];
|
2015-01-31 22:59:38 +01:00
|
|
|
foreach ($this->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof ClassMethod) {
|
|
|
|
$methods[] = $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $methods;
|
|
|
|
}
|
2015-07-14 17:07:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets method with the given name defined directly in this class/interface/trait.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the method (compared case-insensitively)
|
|
|
|
*
|
|
|
|
* @return ClassMethod|null Method node or null if the method does not exist
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getMethod(string $name) {
|
2015-07-14 17:07:45 +02:00
|
|
|
$lowerName = strtolower($name);
|
|
|
|
foreach ($this->stmts as $stmt) {
|
2017-08-15 22:48:24 +02:00
|
|
|
if ($stmt instanceof ClassMethod && $lowerName === $stmt->name->toLowerString()) {
|
2015-07-14 17:07:45 +02:00
|
|
|
return $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2015-01-31 22:59:38 +01:00
|
|
|
}
|