| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 3.0416 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 26 | public function create($alias, RpcClientInterface $client, ApiMetadata $metadata) |
|
| 27 | { |
||
| 28 | 26 | foreach ($this->delegates as $delegate) { |
|
| 29 | 26 | if ($delegate->has($alias)) { |
|
| 30 | 26 | return $delegate->create($alias, $client, $metadata); |
|
| 31 | } |
||
| 32 | 26 | } |
|
| 33 | |||
| 34 | throw MappingException::unknownApiFactory($alias); |
||
| 35 | } |
||
| 36 | |||
| 57 |