| 1 | <?php |
||
| 23 | class RuntimeReflectionService extends Doctrine\Common\Persistence\Mapping\RuntimeReflectionService |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Return a reflection class instance or null |
||
| 28 | * |
||
| 29 | * @param string $class |
||
| 30 | * @return \Nette\Reflection\ClassType |
||
| 31 | */ |
||
| 32 | public function getClass($class) |
||
| 36 | |||
| 37 | |||
| 38 | |||
| 39 | /** |
||
| 40 | * Return an accessible property (setAccessible(true)) or null. |
||
| 41 | * |
||
| 42 | * @param string $class |
||
| 43 | * @param string $property |
||
| 44 | * @return \Nette\Reflection\Property|NULL |
||
| 45 | */ |
||
| 46 | public function getAccessibleProperty($class, $property) |
||
| 58 | |||
| 59 | } |
||
| 60 |