Passed
Push — master ( 8ecc02...b62541 )
by Mauro
01:52
created
tests/BaseTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     protected function checkIfTableExists(Connection $connection, $table)
80 80
     {
81 81
         try {
82
-            $query = 'SELECT count(*) as c FROM ' . $table;
82
+            $query = 'SELECT count(*) as c FROM '.$table;
83 83
             $connection->executeQuery($query);
84 84
         } catch (\Exception $e) {
85 85
             return false;
Please login to merge, or discard this patch.
src/Importer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -264,7 +264,7 @@
 block discarded – undo
264 264
         foreach ($queries as $query) {
265 265
             $stmt = $this->dbal->prepare($query);
266 266
             $c = 1;
267
-            $dataSliced = array_slice($this->data, ($start*$limit), $limit);
267
+            $dataSliced = array_slice($this->data, ($start * $limit), $limit);
268 268
 
269 269
             foreach ($dataSliced as $item) {
270 270
                 $this->bindValuesToItem($item, $stmt, $c);
Please login to merge, or discard this patch.
src/QueryBuilder/AbstractQueryBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      */
73 73
     protected function getQueriesBody($mode, $limit)
74 74
     {
75
-        if($mode == 'multiple'){
75
+        if ($mode == 'multiple') {
76 76
             return $this->getMultipleInsertQueriesBody($limit);
77 77
         }
78 78
 
Please login to merge, or discard this patch.