Skip to content

Commit

Permalink
Added missing ReflectionMethod methods (not implemented)
Browse files Browse the repository at this point in the history
  • Loading branch information
chx committed Jun 22, 2012
1 parent 8ec12f2 commit fb4ffbf
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions lib/Doctrine/Common/Annotations/Psr0MethodReflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
namespace Doctrine\Common\Annotations;

use ReflectionMethod;
use ReflectionException;

class Psr0MethodReflection extends ReflectionMethod
{
Expand Down Expand Up @@ -49,4 +50,37 @@ public function getUseStatements()
{
return $this->getPsr0Parser()->getUseStatements();
}
public static function export($class, $name, $return = FALSE) { throw new ReflectionException('Method not implemented'); }
public function getClosure($object) { throw new ReflectionException('Method not implemented'); }
public function getModifiers() { throw new ReflectionException('Method not implemented'); }
public function getPrototype() { throw new ReflectionException('Method not implemented'); }
public function invoke($object, $parameter = NULL) { throw new ReflectionException('Method not implemented'); }
public function invokeArgs($object, array $args) { throw new ReflectionException('Method not implemented'); }
public function isAbstract() { throw new ReflectionException('Method not implemented'); }
public function isConstructor() { throw new ReflectionException('Method not implemented'); }
public function isDestructor() { throw new ReflectionException('Method not implemented'); }
public function isFinal() { throw new ReflectionException('Method not implemented'); }
public function isPrivate() { throw new ReflectionException('Method not implemented'); }
public function isProtected() { throw new ReflectionException('Method not implemented'); }
public function isPublic() { throw new ReflectionException('Method not implemented'); }
public function isStatic() { throw new ReflectionException('Method not implemented'); }
public function setAccessible($accessible) { throw new ReflectionException('Method not implemented'); }
public function __toString() { throw new ReflectionException('Method not implemented'); }
public function getClosureThis() { throw new ReflectionException('Method not implemented'); }
public function getEndLine() { throw new ReflectionException('Method not implemented'); }
public function getExtension() { throw new ReflectionException('Method not implemented'); }
public function getExtensionName() { throw new ReflectionException('Method not implemented'); }
public function getFileName() { throw new ReflectionException('Method not implemented'); }
public function getNumberOfParameters() { throw new ReflectionException('Method not implemented'); }
public function getNumberOfRequiredParameters() { throw new ReflectionException('Method not implemented'); }
public function getParameters() { throw new ReflectionException('Method not implemented'); }
public function getShortName() { throw new ReflectionException('Method not implemented'); }
public function getStartLine() { throw new ReflectionException('Method not implemented'); }
public function getStaticVariables() { throw new ReflectionException('Method not implemented'); }
public function inNamespace() { throw new ReflectionException('Method not implemented'); }
public function isClosure() { throw new ReflectionException('Method not implemented'); }
public function isDeprecated() { throw new ReflectionException('Method not implemented'); }
public function isInternal() { throw new ReflectionException('Method not implemented'); }
public function isUserDefined() { throw new ReflectionException('Method not implemented'); }
public function returnsReference() { throw new ReflectionException('Method not implemented'); }
}

0 comments on commit fb4ffbf

Please sign in to comment.