class StaticReflectionClassextends ReflectionClass {
/**
* The static reflection parser object.
*
* @var StaticReflectionParser
*/
private $staticReflectionParser;
public function__construct(StaticReflectionParser $staticReflectionParser) {
$this->staticReflectionParser = $staticReflectionParser;
}
public functiongetName() {
return$this->staticReflectionParser
->getClassName();
}
public functiongetDocComment() {
return$this->staticReflectionParser
->getDocComment();
}
public functiongetNamespaceName() {
return$this->staticReflectionParser
->getNamespaceName();
}
public functiongetUseStatements() {
return$this->staticReflectionParser
->getUseStatements();
}
public functiongetMethod($name) {
return$this->staticReflectionParser
->getReflectionMethod($name);
}
public functiongetProperty($name) {
return$this->staticReflectionParser
->getReflectionProperty($name);
}
public static functionexport($argument, $return = false) {
thrownewReflectionException('Method not implemented');
}
public functiongetConstant($name) {
thrownewReflectionException('Method not implemented');
}
public functiongetConstants() {
thrownewReflectionException('Method not implemented');
}
public functiongetConstructor() {
thrownewReflectionException('Method not implemented');
}
public functiongetDefaultProperties() {
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 functiongetInterfaceNames() {
thrownewReflectionException('Method not implemented');
}
public functiongetInterfaces() {
thrownewReflectionException('Method not implemented');
}
public functiongetMethods($filter = NULL) {
thrownewReflectionException('Method not implemented');
}
public functiongetModifiers() {
thrownewReflectionException('Method not implemented');
}
public functiongetParentClass() {
thrownewReflectionException('Method not implemented');
}
public functiongetProperties($filter = NULL) {
thrownewReflectionException('Method not implemented');
}
public functiongetShortName() {
thrownewReflectionException('Method not implemented');
}
public functiongetStartLine() {
thrownewReflectionException('Method not implemented');
}
public functiongetStaticProperties() {
thrownewReflectionException('Method not implemented');
}
public functiongetStaticPropertyValue($name, $default = '') {
thrownewReflectionException('Method not implemented');
}
public functiongetTraitAliases() {
thrownewReflectionException('Method not implemented');
}
public functiongetTraitNames() {
thrownewReflectionException('Method not implemented');
}
public functiongetTraits() {
thrownewReflectionException('Method not implemented');
}
public functionhasConstant($name) {
thrownewReflectionException('Method not implemented');
}
public functionhasMethod($name) {
thrownewReflectionException('Method not implemented');
}
public functionhasProperty($name) {
thrownewReflectionException('Method not implemented');
}
public functionimplementsInterface($interface) {
thrownewReflectionException('Method not implemented');
}
public functioninNamespace() {
thrownewReflectionException('Method not implemented');
}
public functionisAbstract() {
thrownewReflectionException('Method not implemented');
}
public functionisCloneable() {
thrownewReflectionException('Method not implemented');
}
public functionisFinal() {
thrownewReflectionException('Method not implemented');
}
public functionisInstance($object) {
thrownewReflectionException('Method not implemented');
}
public functionisInstantiable() {
thrownewReflectionException('Method not implemented');
}
public functionisInterface() {
thrownewReflectionException('Method not implemented');
}
public functionisInternal() {
thrownewReflectionException('Method not implemented');
}
public functionisIterateable() {
thrownewReflectionException('Method not implemented');
}
public functionisSubclassOf($class) {
thrownewReflectionException('Method not implemented');
}
public functionisTrait() {
thrownewReflectionException('Method not implemented');
}
public functionisUserDefined() {
thrownewReflectionException('Method not implemented');
}
public functionnewInstance($args) {
thrownewReflectionException('Method not implemented');
}
public functionnewInstanceArgs(array $args = array()) {
thrownewReflectionException('Method not implemented');
}
public functionnewInstanceWithoutConstructor() {
thrownewReflectionException('Method not implemented');
}
public functionsetStaticPropertyValue($name, $value) {
thrownewReflectionException('Method not implemented');
}
public function__toString() {
thrownewReflectionException('Method not implemented');
}
}