12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
-
-
-
- namespace Doctrine\Common\Reflection;
-
- interface ReflectionProviderInterface
- {
-
-
- public function getReflectionClass();
-
-
-
- public function getReflectionMethod($name);
-
-
-
- public function getReflectionProperty($name);
- }
|