| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.0416 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | 6826 | public function getMapper(string $entity): MapperInterface |
|
| 28 | { |
||
| 29 | 6826 | if (isset($this->mappers[$entity])) { |
|
| 30 | 5788 | return $this->mappers[$entity]; |
|
| 31 | } |
||
| 32 | 6826 | if ($this->orm === null) { |
|
| 33 | throw new ORMException('Mapper is not prepared.'); |
||
| 34 | } |
||
| 35 | |||
| 36 | 6826 | return $this->mappers[$entity] = $this->factory->mapper($this->orm, $entity); |
|
| 37 | } |
||
| 51 |