class StaticReflectionPropertyextends ReflectionProperty {
/**
* The PSR-0 parser object.
*
* @var StaticReflectionParser
*/
protected $staticReflectionParser;
/**
* The name of the property.
*
* @var string
*/
protected $propertyName;
public function__construct(StaticReflectionParser $staticReflectionParser, $propertyName) {
$this->staticReflectionParser = $staticReflectionParser;
$this->propertyName = $propertyName;
}
public functiongetName() {
return$this->propertyName;
}
protected functiongetStaticReflectionParser() {
return$this->staticReflectionParser
->getStaticReflectionParserForDeclaringClass('property', $this->propertyName);
}
public functiongetDeclaringClass() {
return$this
->getStaticReflectionParser()
->getReflectionClass();
}
public functiongetDocComment() {
return$this
->getStaticReflectionParser()
->getDocComment('property', $this->propertyName);
}
public functiongetUseStatements() {
return$this
->getStaticReflectionParser()
->getUseStatements();
}
public static functionexport($class, $name, $return = false) {
thrownewReflectionException('Method not implemented');
}
public functiongetModifiers() {
thrownewReflectionException('Method not implemented');
}
public functiongetValue($object = NULL) {
thrownewReflectionException('Method not implemented');
}
public functionisDefault() {
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 functionsetValue($object, $value = NULL) {
thrownewReflectionException('Method not implemented');
}
public function__toString() {
thrownewReflectionException('Method not implemented');
}
}