/usr/share/php/TokenReflection/Php/ReflectionMethod.php is in php-tokenreflection 1.4.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | <?php
/**
* PHP Token Reflection
*
* Version 1.4.0
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this library in the file LICENSE.md.
*
* @author Ondřej Nešpor
* @author Jaroslav Hanslík
*/
namespace TokenReflection\Php;
use TokenReflection;
use TokenReflection\Broker, TokenReflection\Exception;
use Reflector, ReflectionMethod as InternalReflectionMethod, ReflectionParameter as InternalReflectionParameter;
/**
* Reflection of a not tokenized but defined class method.
*
* Descendant of the internal reflection with additional features.
*/
class ReflectionMethod extends InternalReflectionMethod implements IReflection, TokenReflection\IReflectionMethod
{
/**
* Function parameter reflections.
*
* @var array
*/
private $parameters;
/**
* Reflection broker.
*
* @var \TokenReflection\Broker
*/
private $broker;
/**
* Is the property accessible despite its access level.
*
* @var boolean
*/
private $accessible = false;
/**
* Constructor.
*
* @param string|\TokenReflection\Php\ReflectionClass|\ReflectionClass $class Defining class
* @param string $methodName Method name
* @param \TokenReflection\Broker $broker Reflection broker
*/
public function __construct($class, $methodName, Broker $broker)
{
parent::__construct($class, $methodName);
$this->broker = $broker;
}
/**
* Returns the declaring class reflection.
*
* @return \TokenReflection\IReflectionClass
*/
public function getDeclaringClass()
{
return ReflectionClass::create(parent::getDeclaringClass(), $this->broker);
}
/**
* Returns the declaring class name.
*
* @return string
*/
public function getDeclaringClassName()
{
return $this->getDeclaringClass()->getName();
}
/**
* Returns imported namespaces and aliases from the declaring namespace.
*
* @return array
*/
public function getNamespaceAliases()
{
return $this->getDeclaringClass()->getNamespaceAliases();
}
/**
* Checks if there is a particular annotation.
*
* @param string $name Annotation name
* @return boolean
*/
public function hasAnnotation($name)
{
return false;
}
/**
* Returns a particular annotation value.
*
* @param string $name Annotation name
* @return null
*/
public function getAnnotation($name)
{
return null;
}
/**
* Returns parsed docblock.
*
* @return array
*/
public function getAnnotations()
{
return array();
}
/**
* Returns if the current reflection comes from a tokenized source.
*
* @return boolean
*/
public function isTokenized()
{
return false;
}
/**
* Returns the method prototype.
*
* @return \TokenReflection\Php\ReflectionMethod
*/
public function getPrototype()
{
return self::create(parent::getPrototype(), $this->broker);
}
/**
* Returns a particular parameter.
*
* @param integer|string $parameter Parameter name or position
* @return \TokenReflection\Php\ReflectionParameter
* @throws \TokenReflection\Exception\RuntimeException If there is no parameter of the given name.
* @throws \TokenReflection\Exception\RuntimeException If there is no parameter at the given position.
*/
public function getParameter($parameter)
{
$parameters = $this->getParameters();
if (is_numeric($parameter)) {
if (!isset($parameters[$parameter])) {
throw new Exception\RuntimeException(sprintf('There is no parameter at position "%d".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this);
}
return $parameters[$parameter];
} else {
foreach ($parameters as $reflection) {
if ($reflection->getName() === $parameter) {
return $reflection;
}
}
throw new Exception\RuntimeException(sprintf('There is no parameter "%s".', $parameter), Exception\RuntimeException::DOES_NOT_EXIST, $this);
}
}
/**
* Returns function parameters.
*
* @return array
*/
public function getParameters()
{
if (null === $this->parameters) {
$broker = $this->broker;
$parent = $this;
$this->parameters = array_map(function(InternalReflectionParameter $parameter) use ($broker, $parent) {
return ReflectionParameter::create($parameter, $broker, $parent);
}, parent::getParameters());
}
return $this->parameters;
}
/**
* Returns if the method is set accessible.
*
* @return boolean
*/
public function isAccessible()
{
return $this->accessible;
}
/**
* Sets a method to be accessible or not.
*
* Introduced in PHP 5.3.2. Throws an exception if run on an older version.
*
* @param boolean $accessible
* @throws \TokenReflection\Exception\RuntimeException If run on PHP version < 5.3.2.
*/
public function setAccessible($accessible)
{
if (PHP_VERSION_ID < 50302) {
throw new Exception\RuntimeException(sprintf('Method setAccessible was introduced the internal reflection in PHP 5.3.2, you are using %s.', PHP_VERSION), Exception\RuntimeException::UNSUPPORTED, $this);
}
$this->accessible = $accessible;
parent::setAccessible($accessible);
}
/**
* Shortcut for isPublic(), ... methods that allows or-ed modifiers.
*
* @param integer $filter Filter
* @return boolean
*/
public function is($filter = null)
{
return null === $filter || ($this->getModifiers() & $filter);
}
/**
* Returns the reflection broker used by this reflection object.
*
* @return \TokenReflection\Broker
*/
public function getBroker()
{
return $this->broker;
}
/**
* Magic __get method.
*
* @param string $key Variable name
* @return mixed
*/
final public function __get($key)
{
return TokenReflection\ReflectionElement::get($this, $key);
}
/**
* Magic __isset method.
*
* @param string $key Variable name
* @return boolean
*/
final public function __isset($key)
{
return TokenReflection\ReflectionElement::exists($this, $key);
}
/**
* Returns the function/method as closure.
*
* @param object $object Object
* @return \Closure
*/
public function getClosure($object)
{
if (PHP_VERSION_ID >= 50400) {
return parent::getClosure();
} else {
$that = $this;
return function() use ($object, $that) {
return $that->invokeArgs($object, func_get_args());
};
}
}
/**
* Returns the closure scope class.
*
* @return string|null
*/
public function getClosureScopeClass()
{
return PHP_VERSION_ID >= 50400 ? parent::getClosureScopeClass() : null;
}
/**
* Returns this pointer bound to closure.
*
* @return null
*/
public function getClosureThis()
{
return PHP_VERSION_ID >= 50400 ? parent::getClosureThis() : null;
}
/**
* Returns the original name when importing from a trait.
*
* @return string
*/
public function getOriginalName()
{
return null;
}
/**
* Returns the original method when importing from a trait.
*
* @return null
*/
public function getOriginal()
{
return null;
}
/**
* Returns the original modifiers value when importing from a trait.
*
* @return null
*/
public function getOriginalModifiers()
{
return null;
}
/**
* Returns the defining trait.
*
* @return \TokenReflection\IReflectionClass|null
*/
public function getDeclaringTrait()
{
return null;
}
/**
* Returns the declaring trait name.
*
* @return string|null
*/
public function getDeclaringTraitName()
{
return null;
}
/**
* Returns an element pretty (docblock compatible) name.
*
* @return string
*/
public function getPrettyName()
{
return sprintf('%s::%s()', $this->getDeclaringClassName(), $this->getName());
}
/**
* Creates a reflection instance.
*
* @param \ReflectionClass $internalReflection Internal reflection instance
* @param \TokenReflection\Broker $broker Reflection broker instance
* @return \TokenReflection\Php\IReflection
* @throws \TokenReflection\Exception\RuntimeException If an invalid internal reflection object was provided.
*/
public static function create(Reflector $internalReflection, Broker $broker)
{
static $cache = array();
if (!$internalReflection instanceof InternalReflectionMethod) {
throw new Exception\RuntimeException('Invalid reflection instance provided, ReflectionMethod expected.', Exception\RuntimeException::INVALID_ARGUMENT);
}
$key = $internalReflection->getDeclaringClass()->getName() . '::' . $internalReflection->getName();
if (!isset($cache[$key])) {
$cache[$key] = new self($internalReflection->getDeclaringClass()->getName(), $internalReflection->getName(), $broker);
}
return $cache[$key];
}
}
|