Completed
Push — master ( 81c04e...2bf77e )
by Patrick
02:38
created
Email/class.EmailRouter.php 1 patch
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,10 @@
 block discarded – undo
41 41
         {
42 42
             $tmp = $this->routeSingle($dest, $rawMessage);
43 43
             $ret[] = $tmp;
44
-            if($tmp === false) $error = true;
44
+            if($tmp === false)
45
+            {
46
+                $error = true;
47
+            }
45 48
         }
46 49
         if($error === true)
47 50
         {
Please login to merge, or discard this patch.
class.FlipREST.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 
180 180
     private function create_excel(&$array)
181 181
     {
182
-        require_once dirname(__FILE__) . '/libs/PHPExcel/Classes/PHPExcel.php';
182
+        require_once dirname(__FILE__).'/libs/PHPExcel/Classes/PHPExcel.php';
183 183
         $ssheat = new PHPExcel();
184 184
         $sheat = $ssheat->setActiveSheetIndex(0);
185 185
         if(is_array($array))
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
                         {
229 229
                             $value = implode(',', $value);
230 230
                         }
231
-                        $sheat->setCellValueByColumnAndRow($j, 2+$i, $value);
231
+                        $sheat->setCellValueByColumnAndRow($j, 2 + $i, $value);
232 232
                     }
233 233
                 }
234 234
             }
Please login to merge, or discard this patch.
Email/class.SMTPServer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@
 block discarded – undo
59 59
             return array($address);
60 60
         }
61 61
         $ret = array();
62
-        $ret[0] = trim(substr($address, $pos+1), '>');
63
-        $ret[1] = substr($address, 0, $pos-1);
62
+        $ret[0] = trim(substr($address, $pos + 1), '>');
63
+        $ret[1] = substr($address, 0, $pos - 1);
64 64
         return $ret;
65 65
     }
66 66
 
Please login to merge, or discard this patch.