@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | // Checks sequence name validity |
63 | 63 | self::assertEquals( |
64 | - str_replace('"', '', $fullTableName) . '_' . $property->getColumnName() . '_seq', |
|
64 | + str_replace('"', '', $fullTableName).'_'.$property->getColumnName().'_seq', |
|
65 | 65 | $idSequenceName |
66 | 66 | ); |
67 | 67 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $product->addBuyer($user); |
36 | 36 | |
37 | 37 | $this->em->getUnitOfWork() |
38 | - ->computeChangeSets(); |
|
38 | + ->computeChangeSets(); |
|
39 | 39 | |
40 | 40 | $this->em->persist($product); |
41 | 41 | $this->em->flush(); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | namespace Doctrine\Tests\ORM\Functional\Ticket; |
6 | 6 |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | $employee = new Issue5989Employee(); |
31 | 31 | |
32 | - $employeeTags =['tag2', 'tag3']; |
|
32 | + $employeeTags = ['tag2', 'tag3']; |
|
33 | 33 | $employee->tags = $employeeTags; |
34 | 34 | $this->em->persist($employee); |
35 | 35 |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | */ |
79 | 79 | public function convertToDatabaseValue($value, AbstractPlatform $platform) |
80 | 80 | { |
81 | - if (!$value instanceof GH6141People) { |
|
81 | + if ( ! $value instanceof GH6141People) { |
|
82 | 82 | $value = GH6141People::get($value); |
83 | 83 | } |
84 | 84 | |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | */ |
122 | 122 | public static function get($value) |
123 | 123 | { |
124 | - if (!self::isValid($value)) { |
|
124 | + if ( ! self::isValid($value)) { |
|
125 | 125 | throw new \InvalidArgumentException(); |
126 | 126 | } |
127 | 127 |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | $related = $this |
51 | 51 | ->em |
52 | - ->createQuery('SELECT b FROM '.__NAMESPACE__ . '\DDC2214Bar b WHERE b.id IN(:ids)') |
|
52 | + ->createQuery('SELECT b FROM '.__NAMESPACE__.'\DDC2214Bar b WHERE b.id IN(:ids)') |
|
53 | 53 | ->setParameter('ids', [$bar]) |
54 | 54 | ->getResult(); |
55 | 55 |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $dql = $q->getDQL(); |
25 | 25 | |
26 | 26 | // Show difference between expected and actual queries on error |
27 | - self::assertEquals("SELECT _a FROM " . __NAMESPACE__ . "\DDC1757A _a, " . __NAMESPACE__ . "\DDC1757B _b INNER JOIN _b.c _c INNER JOIN _c.d _d", |
|
27 | + self::assertEquals("SELECT _a FROM ".__NAMESPACE__."\DDC1757A _a, ".__NAMESPACE__."\DDC1757B _b INNER JOIN _b.c _c INNER JOIN _c.d _d", |
|
28 | 28 | $dql, |
29 | 29 | "Wrong DQL query"); |
30 | 30 | } |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | ->em |
76 | 76 | ->createQuery( |
77 | 77 | 'SELECT e, p, c FROM ' |
78 | - . __NAMESPACE__ . '\\DDC2931User e LEFT JOIN e.parent p LEFT JOIN e.child c WHERE e = :id' |
|
78 | + . __NAMESPACE__.'\\DDC2931User e LEFT JOIN e.parent p LEFT JOIN e.child c WHERE e = :id' |
|
79 | 79 | ) |
80 | 80 | ->setParameter('id', $second) |
81 | 81 | ->setHint(Query::HINT_REFRESH, true) |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | $this->em->persist($group); |
39 | 39 | $this->em->flush(); |
40 | 40 | |
41 | - if (!$user->getGroups()->contains($group)) { |
|
41 | + if ( ! $user->getGroups()->contains($group)) { |
|
42 | 42 | $user->getGroups()->add($group); |
43 | 43 | $group->getUsers()->add($user); |
44 | 44 | $this->em->flush(); |
@@ -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\Tests\ORM\Functional\Ticket; |
6 | 6 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | public function testSavesVeryLargeIntegerAutoGeneratedValue() |
41 | 41 | { |
42 | - $veryLargeId = PHP_INT_MAX . PHP_INT_MAX; |
|
42 | + $veryLargeId = PHP_INT_MAX.PHP_INT_MAX; |
|
43 | 43 | |
44 | 44 | $entityManager = EntityManager::create( |
45 | 45 | new DDC3634LastInsertIdMockingConnection($veryLargeId, $this->em->getConnection()), |