1 | <?php |
||
11 | final class ClassNameResolver |
||
12 | { |
||
13 | /** @var Configuration */ |
||
14 | private $configuration; |
||
15 | |||
16 | 1697 | public function __construct(Configuration $configuration) |
|
20 | |||
21 | /** |
||
22 | * Gets the real class name of a class name that could be a proxy. |
||
23 | */ |
||
24 | 1433 | public function getRealClass(string $class) : string |
|
28 | |||
29 | /** |
||
30 | * Gets the real class name of an object (even if its a proxy). |
||
31 | */ |
||
32 | public function getClass(object $object) : string |
||
36 | |||
37 | 1433 | private function getClassNameInflector() : ClassNameInflectorInterface |
|
41 | } |
||
42 |