Completed
Pull Request — master (#25)
by
unknown
04:30
created
src/Loader/JSONLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             $data = json_decode(file_get_contents($uri));
61 61
             ob_end_clean();
62 62
 
63
-            return (array)$data;
63
+            return (array) $data;
64 64
         } catch (Exception $exception) {
65 65
             throw new FailedToLoadConfigException(
66 66
                 sprintf(
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      */
87 87
     protected function validateUri($uri)
88 88
     {
89
-        if (! is_readable($uri)) {
89
+        if ( ! is_readable($uri)) {
90 90
             throw new FailedToLoadConfigException(
91 91
                 sprintf(
92 92
                     _('The requested PHP config file "%1$s" does not exist or is not readable.'),
Please login to merge, or discard this patch.