| Conditions | 3 | 
| Paths | 3 | 
| Total Lines | 14 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 7 | 
| CRAP Score | 3 | 
| Changes | 0 | ||
| 1 | <?php | ||
| 22 | 544 | protected function loadFile($file) | |
| 23 |     { | ||
| 24 | 544 | $data = @json_decode(@file_get_contents($file), true); | |
| 25 | |||
| 26 | 544 |         if (json_last_error() !== JSON_ERROR_NONE) { | |
| 27 | 84 | throw new \InvalidArgumentException(json_last_error_msg()); | |
| 28 | } | ||
| 29 | |||
| 30 | 460 |         if (!is_array($data)) { | |
| 31 | 4 |             throw new \InvalidArgumentException(sprintf('The json mapping file "%s" is not valid.', $file)); | |
| 32 | } | ||
| 33 | |||
| 34 | 456 | return $data; | |
| 35 | } | ||
| 36 | } | ||
| 37 |