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