mailpoet
/
vendor-prefixed
/
doctrine
/
persistence
/
src
/
Persistence
/
Mapping
/
ReflectionService.php
Driver
9 months ago
AbstractClassMetadataFactory.php
8 months ago
ClassMetadata.php
9 months ago
ClassMetadataFactory.php
9 months ago
MappingException.php
9 months ago
ProxyClassNameResolver.php
9 months ago
ReflectionService.php
9 months ago
RuntimeReflectionService.php
9 months ago
StaticReflectionService.php
9 months ago
index.php
3 years ago
ReflectionService.php
16 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\Persistence\Mapping; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use ReflectionClass; |
| 6 | use ReflectionProperty; |
| 7 | interface ReflectionService |
| 8 | { |
| 9 | public function getParentClasses(string $class); |
| 10 | public function getClassShortName(string $class); |
| 11 | public function getClassNamespace(string $class); |
| 12 | public function getClass(string $class); |
| 13 | public function getAccessibleProperty(string $class, string $property); |
| 14 | public function hasPublicMethod(string $class, string $method); |
| 15 | } |
| 16 |