interface ReflectionProviderInterface in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_annotation_discovery/lib/Doctrine/common/lib/Doctrine/Common/Reflection/ReflectionProviderInterface.php \Doctrine\Common\Reflection\ReflectionProviderInterface
Hierarchy
- interface \Doctrine\Common\Reflection\ReflectionProviderInterface
Expanded class hierarchy of ReflectionProviderInterface
All classes that implement ReflectionProviderInterface
File
- modules/
providers/ service_container_annotation_discovery/ lib/ Doctrine/ common/ lib/ Doctrine/ Common/ Reflection/ ReflectionProviderInterface.php, line 22
Namespace
Doctrine\Common\ReflectionView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ReflectionProviderInterface:: |
public | function | Gets the ReflectionClass equivalent for this class. | 1 |
ReflectionProviderInterface:: |
public | function | Gets the ReflectionMethod equivalent for this class. | 1 |
ReflectionProviderInterface:: |
public | function | Gets the ReflectionProperty equivalent for this class. | 1 |