| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class MappingProvider implements DocumentMappingProviderInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Reader |
||
| 15 | */ |
||
| 16 | private $reader; |
||
| 17 | /** |
||
| 18 | * @var DocumentMappingInterface[] |
||
| 19 | */ |
||
| 20 | private $registry; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Reader $reader |
||
| 24 | */ |
||
| 25 | public function __construct(Reader $reader = null) |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getMapping(string $className): DocumentMappingInterface |
||
| 40 |