class StaticReflectionMethodextends ReflectionMethod {
/**
* The PSR-0 parser object.
*
* @var StaticReflectionParser
*/
protected $staticReflectionParser;
/**
* The name of the method.
*
* @var string
*/
protected $methodName;
public function__construct(StaticReflectionParser $staticReflectionParser, $methodName) {
$this->staticReflectionParser = $staticReflectionParser;
$this->methodName = $methodName;
}
public functiongetName() {
return$this->methodName;
}
protected functiongetStaticReflectionParser() {
return$this->staticReflectionParser
->getStaticReflectionParserForDeclaringClass('method', $this->methodName);
}
public functiongetDeclaringClass() {
return$this
->getStaticReflectionParser()
->getReflectionClass();
}
public functiongetNamespaceName() {
return$this
->getStaticReflectionParser()
->getNamespaceName();
}
public functiongetDocComment() {
return$this
->getStaticReflectionParser()
->getDocComment('method', $this->methodName);
}
public functiongetUseStatements() {
return$this
->getStaticReflectionParser()
->getUseStatements();
}
public static functionexport($class, $name, $return = false) {
thrownewReflectionException('Method not implemented');
}
public functiongetClosure($object) {
thrownewReflectionException('Method not implemented');
}
public functiongetModifiers() {
thrownewReflectionException('Method not implemented');
}
public functiongetPrototype() {
thrownewReflectionException('Method not implemented');
}
public functioninvoke($object, $parameter = NULL) {
thrownewReflectionException('Method not implemented');
}
public functioninvokeArgs($object, array $args) {
thrownewReflectionException('Method not implemented');
}
public functionisAbstract() {
thrownewReflectionException('Method not implemented');
}
public functionisConstructor() {
thrownewReflectionException('Method not implemented');
}
public functionisDestructor() {
thrownewReflectionException('Method not implemented');
}
public functionisFinal() {
thrownewReflectionException('Method not implemented');
}
public functionisPrivate() {
thrownewReflectionException('Method not implemented');
}
public functionisProtected() {
thrownewReflectionException('Method not implemented');
}
public functionisPublic() {
thrownewReflectionException('Method not implemented');
}
public functionisStatic() {
thrownewReflectionException('Method not implemented');
}
public functionsetAccessible($accessible) {
thrownewReflectionException('Method not implemented');
}
public function__toString() {
thrownewReflectionException('Method not implemented');
}
public functiongetClosureThis() {
thrownewReflectionException('Method not implemented');
}
public functiongetEndLine() {
thrownewReflectionException('Method not implemented');
}
public functiongetExtension() {
thrownewReflectionException('Method not implemented');
}
public functiongetExtensionName() {
thrownewReflectionException('Method not implemented');
}
public functiongetFileName() {
thrownewReflectionException('Method not implemented');
}
public functiongetNumberOfParameters() {
thrownewReflectionException('Method not implemented');
}
public functiongetNumberOfRequiredParameters() {
thrownewReflectionException('Method not implemented');
}
public functiongetParameters() {
thrownewReflectionException('Method not implemented');
}
public functiongetShortName() {
thrownewReflectionException('Method not implemented');
}
public functiongetStartLine() {
thrownewReflectionException('Method not implemented');
}
public functiongetStaticVariables() {
thrownewReflectionException('Method not implemented');
}
public functioninNamespace() {
thrownewReflectionException('Method not implemented');
}
public functionisClosure() {
thrownewReflectionException('Method not implemented');
}
public functionisDeprecated() {
thrownewReflectionException('Method not implemented');
}
public functionisInternal() {
thrownewReflectionException('Method not implemented');
}
public functionisUserDefined() {
thrownewReflectionException('Method not implemented');
}
public functionreturnsReference() {
thrownewReflectionException('Method not implemented');
}
}