Completed
Branch master (a7e5af)
by Łukasz
03:31
created
Category
src/Database/Connection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
             $this->currentConnection = new PDO(
92 92
                 sprintf(self::DSN, $this->host, $this->port, $this->databaseName), $this->user, $this->password
93 93
             );
94
-            $this->currentConnection->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION );
94
+            $this->currentConnection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
95 95
             $this->currentConnection->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
96 96
             $this->currentConnection->setAttribute(PDO::MYSQL_ATTR_DIRECT_QUERY, false);
97 97
         }
Please login to merge, or discard this patch.
src/Command/ProvisionCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -354,7 +354,7 @@
 block discarded – undo
354 354
     {
355 355
         $self = $this;
356 356
         $rows = array_map(
357
-            function (Candidate $candidate) use ($self) {
357
+            function(Candidate $candidate) use ($self) {
358 358
                 $status = $candidate->getStatus();
359 359
 
360 360
                 switch ($status) {
Please login to merge, or discard this patch.