| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 36 | public function getItem(string $resourceClass, $id, string $operationName = null, bool $fetchData = false) |
||
| 37 | { |
||
| 38 | foreach ($this->dataProviders as $dataProviders) { |
||
| 39 | try { |
||
| 40 | return $dataProviders->getItem($resourceClass, $id, $operationName, $fetchData); |
||
| 41 | } catch (ResourceClassNotSupportedException $e) { |
||
| 42 | continue; |
||
| 43 | } |
||
| 44 | } |
||
| 45 | } |
||
| 46 | } |
||
| 47 |