| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | 19 | public function find($id) : ?array |
|
| 42 | { |
||
| 43 | 19 | $identifier = $this->getIdentifier(); |
|
| 44 | |||
| 45 | 19 | $identifierValues = is_array($id) ? $id : [$id]; |
|
| 46 | |||
| 47 | 19 | $criteria = array_combine($identifier, $identifierValues); |
|
| 48 | |||
| 49 | 19 | assert($criteria !== false); |
|
| 50 | |||
| 51 | 19 | return $this->findOneBy($criteria); |
|
| 52 | } |
||
| 76 |