| Total Complexity | 5 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class EntityProviderWrapperMappingProvider implements ProviderInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var EntityProviderInterface |
||
| 15 | */ |
||
| 16 | private $provider; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param EntityProviderInterface $provider |
||
| 20 | */ |
||
| 21 | public function __construct(EntityProviderInterface $provider) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function exists(string $name): bool |
||
| 29 | } |
||
| 30 | |||
| 31 | public function get(string $name): ClassMappingInterface |
||
| 34 | } |
||
| 35 | |||
| 36 | public function find(string $name): ?ClassMappingInterface |
||
| 42 |