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