Completed
Push — master ( 47f050...014b6a )
by Patrick
39s
created
cron.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 /**
15 15
  * This cron script recompiles the Browscap cache
16 16
  */
17
-ini_set('memory_limit','-1');      // turn off memory limit for this script
18
-set_time_limit(120);               // change to 2 minutes for this script
17
+ini_set('memory_limit', '-1'); // turn off memory limit for this script
18
+set_time_limit(120); // change to 2 minutes for this script
19 19
 
20 20
 require('vendor/autoload.php');
21 21
 
Please login to merge, or discard this patch.
Log/LogService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
         \Psr\Log\LogLevel::WARNING,
13 13
         \Psr\Log\LogLevel::NOTICE);
14 14
 
15
-    public function __construct($params=false)
15
+    public function __construct($params = false)
16 16
     {
17 17
         if(isset($params['defaultLogLevels']))
18 18
         {
@@ -27,10 +27,10 @@  discard block
 block discarded – undo
27 27
     {
28 28
         // build a replacement array with braces around the context keys
29 29
         $replace = array();
30
-        foreach ($context as $key => $val) {
30
+        foreach($context as $key => $val) {
31 31
             // check that the value can be casted to string
32
-            if (!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) {
33
-                $replace['{' . $key . '}'] = $val;
32
+            if(!is_array($val) && (!is_object($val) || method_exists($val, '__toString'))) {
33
+                $replace['{'.$key.'}'] = $val;
34 34
             }
35 35
         }
36 36
 
Please login to merge, or discard this patch.
Log/PHPLog.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 class PHPLog extends LogService
5 5
 {
6
-    public function __construct($params=false)
6
+    public function __construct($params = false)
7 7
     {
8 8
         parent::__construct($params);
9 9
     }
Please login to merge, or discard this patch.
Data/ObjectDataTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         return $this->dataTable->create($data);
35 35
     }
36 36
 
37
-    public function read($filter=false, $select=false, $count=false, $skip=false, $sort=false, $params=false, $returnObj=false)
37
+    public function read($filter = false, $select = false, $count = false, $skip = false, $sort = false, $params = false, $returnObj = false)
38 38
     {
39 39
         $res = $this->dataTable->read($filter, $select, $count, $skip, $sort, $params);
40 40
         if($res === false)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         return $this->dataTable->delete($filter);
68 68
     }
69 69
 
70
-    public function count($filter=false)
70
+    public function count($filter = false)
71 71
     {
72 72
         return $this->dataTable->count($filter);
73 73
     }
Please login to merge, or discard this patch.
AuthProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
             {
79 79
                 if(isset($res['extended']) && isset($res['extended']['jpegphoto']))
80 80
                 {
81
-                    $res['extended']['jpegphoto']=true;
81
+                    $res['extended']['jpegphoto'] = true;
82 82
                 }
83 83
                 FlipSession::setVar('AuthMethod', get_class($this->methods[$i]));
84 84
                 FlipSession::setVar('AuthData', $res);
Please login to merge, or discard this patch.
Http/WebErrorHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         {
17 17
             return $response->withJson($exception, 400);
18 18
         }
19
-        if (php_sapi_name() !== "cli") {
19
+        if(php_sapi_name() !== "cli") {
20 20
           error_log($exception->__toString());
21 21
         }
22 22
         return $response
Please login to merge, or discard this patch.
Serialize/SpreadSheetSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
             {
90 90
                 $this->addValueByColName($res[0], $tmp, $colName, $row[$colName]);
91 91
             }
92
-            $tmp = $tmp+array_fill_keys(range(0,max(array_keys($tmp))),false);
92
+            $tmp = $tmp + array_fill_keys(range(0, max(array_keys($tmp))), false);
93 93
             ksort($tmp);
94 94
             $res[] = $tmp;
95 95
         }
Please login to merge, or discard this patch.
Serialize/ExcelSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         {
21 21
             if(isset($array[$i]))
22 22
             {
23
-                $sheat->setCellValueByColumnAndRow($i+1, $row, $array[$i]);
23
+                $sheat->setCellValueByColumnAndRow($i + 1, $row, $array[$i]);
24 24
             }
25 25
         }
26 26
     }
Please login to merge, or discard this patch.
Email/DBEmail.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         if(isset($this->dbData['from']))
23 23
         {
24
-            return $this->dbData['from'];;
24
+            return $this->dbData['from']; ;
25 25
         }
26 26
         return parent::getFromAddress();
27 27
     }
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
         if(isset($this->dbData['replyTo']))
32 32
         {
33
-            return $this->dbData['replyTo'];;
33
+            return $this->dbData['replyTo']; ;
34 34
         }
35 35
         return parent::getReplyTo();
36 36
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         return $this->textBody;
60 60
     }
61 61
 
62
-    protected function getBodyFromDB($html=true)
62
+    protected function getBodyFromDB($html = true)
63 63
     {
64 64
         $vars = $this->getSubstituteVars();
65 65
         $rawText = $this->getRawBodyText($html);
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             $end = strpos($rawText, "</script>");
75 75
             if($index === 0)
76 76
             {
77
-                $rawText = substr($rawText, $end+9);
77
+                $rawText = substr($rawText, $end + 9);
78 78
             }
79 79
         }
80 80
         return strtr(strip_tags($rawText), $vars);
Please login to merge, or discard this patch.