Passed
Push — master ( 11fb63...ed1d12 )
by Petr
02:48
created
php-src/Storage/Shared/FormatFiles/Csv.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
             $workArray[] = $value;
67 67
         }
68 68
 
69
-        $returnString = '';                 # Initialize return string
70
-        $arraySize = count($workArray);     # Get size of array
69
+        $returnString = ''; # Initialize return string
70
+        $arraySize = count($workArray); # Get size of array
71 71
 
72
-        for ($i=0; $i<$arraySize; $i++) {
72
+        for ($i = 0; $i < $arraySize; $i++) {
73 73
             # Nested array, process nest item
74 74
             if (is_array($workArray[$i])) {
75 75
                 $returnString .= $this->str_putcsv($workArray[$i], $delimiter, $enclosure, $terminator);
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                 switch (gettype($workArray[$i])) {
78 78
                     # Manually set some strings
79 79
                     case "NULL":     $_spFormat = ''; break;
80
-                    case "boolean":  $_spFormat = (true == $workArray[$i]) ? 'true': 'false'; break;
80
+                    case "boolean":  $_spFormat = (true == $workArray[$i]) ? 'true' : 'false'; break;
81 81
                     # Make sure sprintf has a good datatype to work with
82 82
                     case "integer":  $_spFormat = '%i'; break;
83 83
                     case "double":   $_spFormat = '%0.2f'; break;
@@ -87,8 +87,8 @@  discard block
 block discarded – undo
87 87
                     case "resource":
88 88
                     default:         $_spFormat = ''; break;
89 89
                 }
90
-                $returnString .= sprintf('%2$s'.$_spFormat.'%2$s', $workArray[$i], $enclosure);
91
-                $returnString .= ($i < ($arraySize-1)) ? $delimiter : $terminator;
90
+                $returnString .= sprintf('%2$s' . $_spFormat . '%2$s', $workArray[$i], $enclosure);
91
+                $returnString .= ($i < ($arraySize - 1)) ? $delimiter : $terminator;
92 92
             }
93 93
         }
94 94
         # Done the workload, return the output information
Please login to merge, or discard this patch.
php-src/Storage/Shared/FormatFiles/Ini.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,17 +56,17 @@
 block discarded – undo
56 56
                     if (is_array($sval)) {
57 57
                         foreach ($sval as $_skey => $_sval) {
58 58
                             if (is_numeric($_skey)) {
59
-                                $data[] = $skey.'[] = '.(is_numeric($_sval) ? $_sval : (ctype_upper($_sval) ? $_sval : '"'.$_sval.'"'));
59
+                                $data[] = $skey . '[] = ' . (is_numeric($_sval) ? $_sval : (ctype_upper($_sval) ? $_sval : '"' . $_sval . '"'));
60 60
                             } else {
61
-                                $data[] = $skey.'['.$_skey.'] = '.(is_numeric($_sval) ? $_sval : (ctype_upper($_sval) ? $_sval : '"'.$_sval.'"'));
61
+                                $data[] = $skey . '[' . $_skey . '] = ' . (is_numeric($_sval) ? $_sval : (ctype_upper($_sval) ? $_sval : '"' . $_sval . '"'));
62 62
                             }
63 63
                         }
64 64
                     } else {
65
-                        $data[] = $skey.' = '.(is_numeric($sval) ? $sval : (ctype_upper($sval) ? $sval : '"'.$sval.'"'));
65
+                        $data[] = $skey . ' = ' . (is_numeric($sval) ? $sval : (ctype_upper($sval) ? $sval : '"' . $sval . '"'));
66 66
                     }
67 67
                 }
68 68
             } else {
69
-                $data[] = $key.' = '.(is_numeric($val) ? $val : (ctype_upper($val) ? $val : '"'.$val.'"'));
69
+                $data[] = $key . ' = ' . (is_numeric($val) ? $val : (ctype_upper($val) ? $val : '"' . $val . '"'));
70 70
             }
71 71
             // empty line
72 72
             $data[] = null;
Please login to merge, or discard this patch.
php-src/Mappers/Database/TReadDatabase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
         foreach ($relations as $localAlias => $remoteColumn) {
110 110
             $this->readQueryBuilder->addColumn($record->getMapper()->getAlias(), $remoteColumn, $localAlias);
111 111
         }
112
-        $this->readQueryBuilder->setLimits(0,1);
112
+        $this->readQueryBuilder->setLimits(0, 1);
113 113
 
114 114
         // query itself
115 115
         $lines = $this->readDatabase->query(
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
         }
171 171
 
172 172
         // query itself
173
-        $this->readQueryBuilder->setLimits(0,1);
173
+        $this->readQueryBuilder->setLimits(0, 1);
174 174
         $lines = $this->readDatabase->query(
175 175
             strval($this->readDialect->select($this->readQueryBuilder)),
176 176
             $this->readQueryBuilder->getParams()
Please login to merge, or discard this patch.
php-src/Mappers/Shared/TWriteFileTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             $entry = $record->getEntry($primaryKey);
51 51
             if (in_array($entry->getType(), [IEntryType::TYPE_INTEGER, IEntryType::TYPE_FLOAT])) {
52 52
                 if (empty($entry->getData())) {
53
-                    $data = empty($records) ? 1 : intval(max(array_column($records, $primaryKey))) + 1 ;
53
+                    $data = empty($records) ? 1 : intval(max(array_column($records, $primaryKey))) + 1;
54 54
                     $entry->setData($data);
55 55
                 }
56 56
             }
Please login to merge, or discard this patch.
php-src/Storage/Database/Odbc/AOdbc.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
         $this->connect();
52 52
 
53
-        list($updQuery, $binds, ) = $this->bindFromNamedToQuestions($query, $params);
53
+        list($updQuery, $binds,) = $this->bindFromNamedToQuestions($query, $params);
54 54
         $statement = odbc_prepare($this->getConnection(), $updQuery); // @phpstan-ignore-line
55 55
 
56 56
         if ((false !== $statement) && odbc_execute($statement, $binds)) { // @phpstan-ignore-line
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             }
62 62
 
63 63
             $numFields = odbc_num_fields($statement);
64
-            for ($i=1; $i<=$numFields; $i++) {
64
+            for ($i = 1; $i <= $numFields; $i++) {
65 65
                 // odbc starts its indexes at 1 but since I am
66 66
                 // trying to emulate the functionality of *_fetch_array
67 67
                 // for other dbs (ie mysql) I'm going to decrement my
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
         $this->connect();
92 92
 
93
-        list($updQuery, $binds, ) = $this->bindFromNamedToQuestions($query, $params);
93
+        list($updQuery, $binds,) = $this->bindFromNamedToQuestions($query, $params);
94 94
         $statement = odbc_prepare($this->getConnection(), strval($updQuery));
95 95
         if (false !== $statement) {
96 96
             $result = odbc_execute($statement, $binds); // @phpstan-ignore-line
Please login to merge, or discard this patch.