/usr/share/php/TokenReflection/ReflectionFunction.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 | <?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;
use TokenReflection\Exception, TokenReflection\Stream\StreamBase as Stream;
use ReflectionFunction as InternalReflectionFunction;
/**
* Tokenized function reflection.
*/
class ReflectionFunction extends ReflectionFunctionBase implements IReflectionFunction
{
/**
* Imported namespace/class aliases.
*
* @var array
*/
private $aliases = array();
/**
* Returns if the function is is disabled via the disable_functions directive.
*
* @return boolean
*/
public function isDisabled()
{
return $this->hasAnnotation('disabled');
}
/**
* Returns the string representation of the reflection object.
*
* @return string
*/
public function __toString()
{
$parameters = '';
if ($this->getNumberOfParameters() > 0) {
$buffer = '';
foreach ($this->getParameters() as $parameter) {
$buffer .= "\n " . $parameter->__toString();
}
$parameters = sprintf(
"\n\n - Parameters [%d] {%s\n }",
$this->getNumberOfParameters(),
$buffer
);
}
return sprintf(
"%sFunction [ <user> function %s%s ] {\n @@ %s %d - %d%s\n}\n",
$this->getDocComment() ? $this->getDocComment() . "\n" : '',
$this->returnsReference() ? '&' : '',
$this->getName(),
$this->getFileName(),
$this->getStartLine(),
$this->getEndLine(),
$parameters
);
}
/**
* Exports a reflected object.
*
* @param \TokenReflection\Broker $broker Broker instance
* @param string $function Function name
* @param boolean $return Return the export instead of outputting it
* @return string|null
* @throws \TokenReflection\Exception\RuntimeException If requested parameter doesn't exist.
*/
public static function export(Broker $broker, $function, $return = false)
{
$functionName = $function;
$function = $broker->getFunction($functionName);
if (null === $function) {
throw new Exception\RuntimeException(sprintf('Function %s() does not exist.', $functionName), Exception\RuntimeException::DOES_NOT_EXIST);
}
if ($return) {
return $function->__toString();
}
echo $function->__toString();
}
/**
* Calls the function.
*
* @return mixed
*/
public function invoke()
{
return $this->invokeArgs(func_get_args());
}
/**
* Calls the function.
*
* @param array $args Function parameter values
* @return mixed
* @throws \TokenReflection\Exception\RuntimeException If the required function does not exist.
*/
public function invokeArgs(array $args = array())
{
if (!function_exists($this->getName())) {
throw new Exception\RuntimeException('Could not invoke function; function is not defined.', Exception\RuntimeException::DOES_NOT_EXIST, $this);
}
return call_user_func_array($this->getName(), $args);
}
/**
* Returns imported namespaces and aliases from the declaring namespace.
*
* @return array
*/
public function getNamespaceAliases()
{
return $this->aliases;
}
/**
* Returns the function/method as closure.
*
* @return \Closure
*/
public function getClosure()
{
if (!function_exists($this->getName())) {
throw new Exception\RuntimeException('Could not invoke function; function is not defined.', Exception\RuntimeException::DOES_NOT_EXIST, $this);
}
$that = $this;
return function() use ($that) {
return $that->invokeArgs(func_get_args());
};
}
/**
* Returns the closure scope class.
*
* @return null
*/
public function getClosureScopeClass()
{
return null;
}
/**
* Returns if the function definition is valid.
*
* @return boolean
*/
public function isValid()
{
return true;
}
/**
* Processes the parent reflection object.
*
* @param \TokenReflection\IReflection $parent Parent reflection object
* @param \TokenReflection\Stream\StreamBase $tokenStream Token substream
* @return \TokenReflection\ReflectionElement
* @throws \TokenReflection\Exception\ParseException If an invalid parent reflection object was provided.
*/
protected function processParent(IReflection $parent, Stream $tokenStream)
{
if (!$parent instanceof ReflectionFileNamespace) {
throw new Exception\ParseException($this, $tokenStream, 'The parent object has to be an instance of TokenReflection\ReflectionFileNamespace.', Exception\ParseException::INVALID_PARENT);
}
$this->namespaceName = $parent->getName();
$this->aliases = $parent->getNamespaceAliases();
return parent::processParent($parent, $tokenStream);
}
/**
* Parses reflected element metadata from the token stream.
*
* @param \TokenReflection\Stream\StreamBase $tokenStream Token substream
* @param \TokenReflection\IReflection $parent Parent reflection object
* @return \TokenReflection\ReflectionFunction
*/
protected function parse(Stream $tokenStream, IReflection $parent)
{
return $this
->parseReturnsReference($tokenStream)
->parseName($tokenStream);
}
}
|