You are here

interface ReflectionProviderInterface in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/lib/Doctrine/Common/Reflection/ReflectionProviderInterface.php \Doctrine\Common\Reflection\ReflectionProviderInterface

Hierarchy

Expanded class hierarchy of ReflectionProviderInterface

All classes that implement ReflectionProviderInterface

File

vendor/doctrine/common/lib/Doctrine/Common/Reflection/ReflectionProviderInterface.php, line 22

Namespace

Doctrine\Common\Reflection
View source
interface ReflectionProviderInterface {

  /**
   * Gets the ReflectionClass equivalent for this class.
   *
   * @return \ReflectionClass
   */
  public function getReflectionClass();

  /**
   * Gets the ReflectionMethod equivalent for this class.
   *
   * @param string $name
   *
   * @return \ReflectionMethod
   */
  public function getReflectionMethod($name);

  /**
   * Gets the ReflectionProperty equivalent for this class.
   *
   * @param string $name
   *
   * @return \ReflectionProperty
   */
  public function getReflectionProperty($name);

}

Members

Namesort descending Modifiers Type Description Overrides
ReflectionProviderInterface::getReflectionClass public function Gets the ReflectionClass equivalent for this class. 1
ReflectionProviderInterface::getReflectionMethod public function Gets the ReflectionMethod equivalent for this class. 1
ReflectionProviderInterface::getReflectionProperty public function Gets the ReflectionProperty equivalent for this class. 1