Completed
Push — master ( 6497ab...c6b9dc )
by Paweł
02:05
created
src/PDODbAdapter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * {@inheritdoc}
19
-    */
19
+     */
20 20
     public function executeCommand(string $command, array $parameters = array())
21 21
     {
22 22
         $this->executeParameterisedQuery($command, $parameters);
Please login to merge, or discard this patch.
src/QueryAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $queryResult = $this->dbAdapter->executeQuery($query, $parameters);
32 32
         $entities = [];
33
-        foreach($queryResult as $resultItem) {
33
+        foreach ($queryResult as $resultItem) {
34 34
             $entities[] = $this->entityMapper->map($resultItem, $entityClassName);
35 35
         }
36 36
 
Please login to merge, or discard this patch.