interface ReflectionProviderInterface

Hierarchy

Expanded class hierarchy of ReflectionProviderInterface

All classes that implement ReflectionProviderInterface

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Reflection/ReflectionProviderInterface.php, line 23

Namespace

Doctrine\Common\Reflection
View source
interface ReflectionProviderInterface {

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

  /**
   * Get the ReflectionClass equivalent for this class.
   *
   * @return ReflectionMethod
   */
  public function getReflectionMethod($name);

  /**
   * Get the ReflectionClass equivalent for this class.
   *
   * @return ReflectionMethod
   */
  public function getReflectionProperty($name);

}

Members

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