1 | <?php |
||
13 | class DelegatingEntityConfigReader implements EntityConfigReader |
||
14 | { |
||
15 | /** @var EntityConfigReader */ |
||
16 | protected $delegate; |
||
17 | |||
18 | /** |
||
19 | * DelegatingEntityConfigLookUp constructor. |
||
20 | * |
||
21 | * @param EntityConfigReader $delegate |
||
22 | */ |
||
23 | public function __construct(EntityConfigReader $delegate) |
||
27 | |||
28 | /** |
||
29 | * @param \ReflectionClass $subject |
||
30 | * |
||
31 | * @return EntityConfig |
||
32 | */ |
||
33 | public function getEntityConfig(\ReflectionClass $subject) |
||
37 | } |
||
38 |