Failed Conditions
Pull Request — develop (#6596)
by
unknown
160:54 queued 95:39
created
lib/Doctrine/ORM/Sequencing/UuidGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  * <http://www.doctrine-project.org>.
18 18
  */
19 19
 
20
-declare(strict_types=1);
20
+declare(strict_types = 1);
21 21
 
22 22
 namespace Doctrine\ORM\Sequencing;
23 23
 
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function generate(EntityManagerInterface $em, $entity)
38 38
     {
39 39
         $conn = $em->getConnection();
40
-        $sql = 'SELECT ' . $conn->getDatabasePlatform()->getGuidExpression();
40
+        $sql = 'SELECT '.$conn->getDatabasePlatform()->getGuidExpression();
41 41
 
42 42
         return $conn->query($sql)->fetchColumn(0);
43 43
     }
Please login to merge, or discard this patch.