diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-10-20 11:31:52 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-10-20 11:36:11 +0200 |
commit | 7af9a41881ed0b9d44d18a0ce03a123a8441adf5 (patch) | |
tree | 499d26ccee0d0df3aeac5fe9d27faf2800721698 /application/config/ConfigJson.php | |
parent | ceeb8fbeb89f69e41791ae192d073d6afea00f4b (diff) | |
download | Shaarli-7af9a41881ed0b9d44d18a0ce03a123a8441adf5.tar.gz Shaarli-7af9a41881ed0b9d44d18a0ce03a123a8441adf5.tar.zst Shaarli-7af9a41881ed0b9d44d18a0ce03a123a8441adf5.zip |
Minor code cleanup: PHPDoc, spelling, unused variables, etc.
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 | } |