diff options
Diffstat (limited to 'application/config/ConfigJson.php')
-rw-r--r-- | application/config/ConfigJson.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/ConfigJson.php b/application/config/ConfigJson.php index d07fefee..30007eb4 100644 --- a/application/config/ConfigJson.php +++ b/application/config/ConfigJson.php | |||
@@ -21,7 +21,7 @@ class ConfigJson implements ConfigIO | |||
21 | $data = json_decode($data, true); | 21 | $data = json_decode($data, true); |
22 | if ($data === null) { | 22 | if ($data === null) { |
23 | $error = json_last_error(); | 23 | $error = json_last_error(); |
24 | throw new Exception('An error occured while parsing JSON file: error code #'. $error); | 24 | throw new Exception('An error occurred while parsing JSON file: error code #'. $error); |
25 | } | 25 | } |
26 | return $data; | 26 | return $data; |
27 | } | 27 | } |