Passed
Push — master ( 50afc5...b5d570 )
by Daniel
02:54
created
source/MySQLiMultipleExecution.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      */
124 124
     protected function glueDbTb($dbName, $tbName)
125 125
     {
126
-        return '`' . $dbName . '`.`' . $tbName . '`';
126
+        return '`'.$dbName.'`.`'.$tbName.'`';
127 127
     }
128 128
 
129 129
     /**
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     private function handleFeaturesSingle($fieldName, $features, $featureKey)
156 156
     {
157
-        $fMap    = [
157
+        $fMap = [
158 158
             'readonly' => ['readonly', 'class', 'input_readonly'],
159 159
             'disabled' => ['disabled']
160 160
         ];
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
     {
180 180
         if (substr($this->mySQLconnection->server_info, -7) === 'MariaDB') {
181 181
             $strVersionParts = explode('.', explode('-', $this->mySQLconnection->server_info)[1]);
182
-            return $this->getTwoDecimalsNumber($strVersionParts[0]) . $this->getTwoDecimalsNumber($strVersionParts[1])
182
+            return $this->getTwoDecimalsNumber($strVersionParts[0]).$this->getTwoDecimalsNumber($strVersionParts[1])
183 183
                 . $this->getTwoDecimalsNumber($strVersionParts[2]);
184 184
         }
185 185
         return $this->mySQLconnection->server_version;
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     private function getTwoDecimalsNumber($inNumber)
194 194
     {
195 195
         if ($inNumber < 10) {
196
-            return '0' . $inNumber;
196
+            return '0'.$inNumber;
197 197
         }
198 198
         return $inNumber;
199 199
     }
Please login to merge, or discard this patch.