. */ namespace Doctrine\Common\Reflection; 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); }