Failed Conditions
Pull Request — develop (#6599)
by Michael
131:05 queued 63:47
created
lib/Doctrine/ORM/Sequencing/UuidGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Doctrine\ORM\Sequencing;
6 6
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     public function generate(EntityManagerInterface $em, $entity)
21 21
     {
22 22
         $conn = $em->getConnection();
23
-        $sql = 'SELECT ' . $conn->getDatabasePlatform()->getGuidExpression();
23
+        $sql = 'SELECT '.$conn->getDatabasePlatform()->getGuidExpression();
24 24
 
25 25
         return $conn->query($sql)->fetchColumn(0);
26 26
     }
Please login to merge, or discard this patch.