Passed
Push — master ( 882871...6b9e82 )
by Alain
02:19
created
src/AbstractConfigSchema.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             return $this->defined->getArrayCopy();
63 63
         }
64 64
 
65
-        return (array)$this->defined;
65
+        return (array) $this->defined;
66 66
     }
67 67
 
68 68
     /**
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
             return $this->defaults->getArrayCopy();
83 83
         }
84 84
 
85
-        return (array)$this->defaults;
85
+        return (array) $this->defaults;
86 86
     }
87 87
 
88 88
     /**
@@ -102,6 +102,6 @@  discard block
 block discarded – undo
102 102
             return $this->required->getArrayCopy();
103 103
         }
104 104
 
105
-        return (array)$this->required;
105
+        return (array) $this->required;
106 106
     }
107 107
 }
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
             if ( ! file_exists($config)) {
119 119
                 throw new RuntimeException(sprintf(
120 120
                     _('Non-existing configuration source: %1$s'),
121
-                    (string)$config
121
+                    (string) $config
122 122
                 ));
123 123
             }
124 124
 
@@ -137,13 +137,13 @@  discard block
 block discarded – undo
137 137
             } catch (Exception $exception) {
138 138
                 throw new RuntimeException(sprintf(
139 139
                     _('Loading from configuration source %1$s failed. Reason: %2$s'),
140
-                    (string)$configString,
141
-                    (string)$exception->getMessage()
140
+                    (string) $configString,
141
+                    (string) $exception->getMessage()
142 142
                 ));
143 143
             }
144 144
         }
145 145
 
146
-        return (array)$config;
146
+        return (array) $config;
147 147
     }
148 148
 
149 149
     /**
Please login to merge, or discard this patch.
src/AbstractConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@
 block discarded – undo
123 123
      */
124 124
     public function getKeys()
125 125
     {
126
-        return array_keys((array)$this);
126
+        return array_keys((array) $this);
127 127
     }
128 128
 
129 129
     /**
Please login to merge, or discard this patch.