| 1 | <?php |
||
| 11 | class DelegatingEntityConfigReader implements EntityConfigReader |
||
| 12 | { |
||
| 13 | /** @var EntityConfigReader */ |
||
| 14 | protected $delegate; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * DelegatingEntityConfigLookUp constructor. |
||
| 18 | * |
||
| 19 | * @param EntityConfigReader $delegate |
||
| 20 | */ |
||
| 21 | 1 | public function __construct(EntityConfigReader $delegate) |
|
| 22 | { |
||
| 23 | 1 | $this->delegate = $delegate; |
|
| 24 | 1 | } |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param \ReflectionClass $subject |
||
| 28 | * |
||
| 29 | * @return EntityConfig |
||
| 30 | */ |
||
| 31 | public function getEntityConfig(\ReflectionClass $subject) |
||
| 35 | } |
||
| 36 |