@@ -17,7 +17,7 @@ discard block |
||
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 |
||
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 | } |