| Conditions | 4 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 40 | protected function validateJsonData($path, $jsonData, $root) |
||
| 41 | { |
||
| 42 | if ($jsonData === null && file_exists(public_path($root.'/rev-manifest.json'))) { |
||
| 43 | $jsonData = file_get_contents(public_path($root.'/rev-manifest.json')); |
||
| 44 | } |
||
| 45 | |||
| 46 | if ($jsonData === null) { |
||
| 47 | abort(500, "Resource {$path} could not be resolved."); |
||
| 48 | } |
||
| 49 | |||
| 50 | return $jsonData; |
||
| 51 | } |
||
| 52 | } |
||
| 53 |