| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 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) |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param \ReflectionClass $subject |
||
| 30 | * |
||
| 31 | * @return EntityConfig |
||
| 32 | */ |
||
| 33 | public function getEntityConfig(\ReflectionClass $subject) |
||
| 38 |