2015-01-31 22:59:38 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
use PhpParser\Node;
|
|
|
|
|
|
|
|
abstract class ClassLike extends Node\Stmt {
|
2016-10-21 02:35:16 +02:00
|
|
|
/** @var string|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;
|
|
|
|
|
2015-07-14 17:07:45 +02:00
|
|
|
/**
|
|
|
|
* Gets all methods defined directly in this class/interface/trait
|
|
|
|
*
|
|
|
|
* @return ClassMethod[]
|
|
|
|
*/
|
2015-01-31 22:59:38 +01:00
|
|
|
public function getMethods() {
|
|
|
|
$methods = array();
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
public function getMethod($name) {
|
|
|
|
$lowerName = strtolower($name);
|
|
|
|
foreach ($this->stmts as $stmt) {
|
|
|
|
if ($stmt instanceof ClassMethod && $lowerName === strtolower($stmt->name)) {
|
|
|
|
return $stmt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2015-01-31 22:59:38 +01:00
|
|
|
}
|