Completed
Push — master ( d92413...ff1eea )
by Beñat
01:42
created
LIN3S/SharedKernel/Infrastructure/Persistence/Sql/Event/SqlEventStore.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace LIN3S\SharedKernel\Infrastructure\Persistence\Sql\Event;
15 15
 
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $tableName = self::TABLE_NAME;
50 50
         $sql = <<<SQL
51 51
 SELECT * FROM $tableName WHERE stream = :stream ORDER BY id ASC
52
-SQL;
52
+sql;
53 53
         $storedEventRows = $this->pdo->execute($sql, ['stream' => $name->name()])->fetchAll(\PDO::FETCH_ASSOC);
54 54
         $domainEventsCollection = $this->buildDomainEventsCollection($storedEventRows);
55 55
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
   `stream` VARCHAR(255) NOT NULL,
115 115
   PRIMARY KEY (`id`)
116 116
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
117
-SQL;
117
+sql;
118 118
     }
119 119
 
120 120
     public static function removeSchema() : string
Please login to merge, or discard this patch.
Infrastructure/Persistence/Doctrine/Migrations/Version20170920174845.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace LIN3S\SharedKernel\Infrastructure\Persistence\Doctrine\Migrations;
15 15
 
Please login to merge, or discard this patch.
SharedKernel/Infrastructure/Application/SimpleBus/SimpleBusCommandBus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace LIN3S\SharedKernel\Infrastructure\Application\SimpleBus;
15 15
 
Please login to merge, or discard this patch.