@@ -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\ORM; |
6 | 6 |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -declare(strict_types=1); |
|
4 | +declare(strict_types = 1); |
|
5 | 5 | |
6 | 6 | namespace Doctrine\ORM\Configuration; |
7 | 7 |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -declare(strict_types=1); |
|
4 | +declare(strict_types = 1); |
|
5 | 5 | |
6 | 6 | namespace Doctrine\ORM\Configuration; |
7 | 7 |
@@ -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\Configuration; |
6 | 6 | |
@@ -10,6 +10,6 @@ discard block |
||
10 | 10 | { |
11 | 11 | public static function fromName(string $queryName) : self |
12 | 12 | { |
13 | - return new self('Could not find a named native query by the name "' . $queryName . '"'); |
|
13 | + return new self('Could not find a named native query by the name "'.$queryName.'"'); |
|
14 | 14 | } |
15 | 15 | } |
@@ -1,7 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -declare(strict_types=1); |
|
4 | +declare(strict_types = 1); |
|
5 | 5 | |
6 | 6 | namespace Doctrine\ORM\Configuration; |
7 | 7 |
@@ -12,7 +12,6 @@ |
||
12 | 12 | use Doctrine\ORM\Mapping\ClassMetadataFactory; |
13 | 13 | use Doctrine\ORM\Mapping\Driver\MappingDriver; |
14 | 14 | use Doctrine\ORM\NativeQuery; |
15 | -use Doctrine\ORM\ORMException; |
|
16 | 15 | use Doctrine\ORM\ORMInvalidArgumentException; |
17 | 16 | use Doctrine\ORM\Proxy\Factory\ProxyFactory; |
18 | 17 | use Doctrine\ORM\Query; |
@@ -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\ORM\EntityManager; |
6 | 6 |
@@ -3,10 +3,8 @@ |
||
3 | 3 | declare(strict_types=1); |
4 | 4 | |
5 | 5 | namespace Doctrine\Tests\ORM\Functional; |
6 | -use Doctrine\Common\Util\Debug; |
|
7 | 6 | use Doctrine\ORM\EntityManager\MissingIdentifierField; |
8 | 7 | use Doctrine\ORM\EntityManager\UnrecognizedIdentifierFields; |
9 | -use Doctrine\ORM\ORMException; |
|
10 | 8 | use Doctrine\ORM\Query\QueryException; |
11 | 9 | use Doctrine\Tests\Models\Navigation\NavCountry; |
12 | 10 | use Doctrine\Tests\Models\Navigation\NavPhotos; |
@@ -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\ORM\Persisters; |
6 | 6 |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | namespace Doctrine\ORM\Persisters; |
6 | 6 | |
7 | -use Doctrine\ORM\ORMException; |
|
8 | 7 | use Doctrine\ORM\PersisterException; |
9 | 8 | |
10 | 9 | class CantUseInOperatorOnCompositeKeys extends \Exception implements PersisterException |