Passed
Pull Request — master (#2)
by
unknown
01:13
created
Source/Model/SimplePHP.class.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -172,19 +172,19 @@
 block discarded – undo
172 172
      */
173 173
     private function deny()
174 174
     {
175
-        if(!empty($this->excepts)) {
175
+        if (!empty($this->excepts)) {
176 176
             switch (!is_object($this->data) && $count = count($this->data)) {
177 177
                 case (!isset($this->data[0]) && !empty($this->data)):
178
-                    foreach($this->excepts as $except) {
179
-                        if(isset($this->data[$except])) {
178
+                    foreach ($this->excepts as $except) {
179
+                        if (isset($this->data[$except])) {
180 180
                             unset($this->data[$except]);
181 181
                         }
182 182
                     }
183 183
                     break;
184 184
                 case ($count >= 2 && isset($this->data[0])):
185
-                    foreach($this->excepts as $except) {
186
-                        for($i = 0; $i < $count; $i++) {
187
-                            if(isset($this->data[$i][$except])) {
185
+                    foreach ($this->excepts as $except) {
186
+                        for ($i = 0; $i < $count; $i++) {
187
+                            if (isset($this->data[$i][$except])) {
188 188
                                 unset($this->data[$i][$except]);
189 189
                             }
190 190
                         }
Please login to merge, or discard this patch.