Passed
Pull Request — master (#7840)
by Peter
09:06
created
lib/Doctrine/ORM/Exception/InvalidEntityRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     public static function fromClassName(string $className) : self
12 12
     {
13 13
         return new self(
14
-            "Invalid repository class '" . $className . "'. It must be a " . ObjectRepository::class . '.'
14
+            "Invalid repository class '".$className."'. It must be a ".ObjectRepository::class.'.'
15 15
         );
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Exception/MissingMappingDriverImplementation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     public static function create() : self
10 10
     {
11 11
         return new self(
12
-            "It's a requirement to specify a Metadata Driver and pass it " .
12
+            "It's a requirement to specify a Metadata Driver and pass it ".
13 13
             'to Doctrine\\ORM\\Configuration::setMetadataDriverImpl().'
14 14
         );
15 15
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Driver/FileDriver.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,8 +107,8 @@  discard block
 block discarded – undo
107 107
         }
108 108
 
109 109
         $result = $this->loadMappingFile($this->locator->findMappingFile($className));
110
-        if (! isset($result[$className])) {
111
-            throw MappingException::invalidMappingFile($className, str_replace('\\', '.', $className) . $this->locator->getFileExtension());
110
+        if ( ! isset($result[$className])) {
111
+            throw MappingException::invalidMappingFile($className, str_replace('\\', '.', $className).$this->locator->getFileExtension());
112 112
         }
113 113
 
114 114
         $this->classCache[$className] = $result[$className];
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
             $this->initialize();
142 142
         }
143 143
 
144
-        if (! $this->classCache) {
144
+        if ( ! $this->classCache) {
145 145
             return (array) $this->locator->getAllClassNames($this->globalBasename);
146 146
         }
147 147
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
         $this->classCache = [];
176 176
         if ($this->globalBasename !== null) {
177 177
             foreach ($this->locator->getPaths() as $path) {
178
-                $file = $path . '/' . $this->globalBasename . $this->locator->getFileExtension();
178
+                $file = $path.'/'.$this->globalBasename.$this->locator->getFileExtension();
179 179
                 if (is_file($file)) {
180 180
                     $this->classCache = array_merge(
181 181
                         $this->classCache,
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Driver/DriverChain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
         foreach ($this->drivers as $namespace => $driver) {
100 100
             $oid = spl_object_id($driver);
101 101
 
102
-            if (! isset($driverClasses[$oid])) {
102
+            if ( ! isset($driverClasses[$oid])) {
103 103
                 $driverClasses[$oid] = $driver->getAllClassNames();
104 104
             }
105 105
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/TableMetadata.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
     public function getQuotedQualifiedName(AbstractPlatform $platform) : string
57 57
     {
58
-        if (! $this->schema) {
58
+        if ( ! $this->schema) {
59 59
             return $platform->quoteIdentifier($this->name);
60 60
         }
61 61
 
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function addIndex(array $index) : void
129 129
     {
130
-        if (! isset($index['name'])) {
130
+        if ( ! isset($index['name'])) {
131 131
             $this->indexes[] = $index;
132 132
 
133 133
             return;
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
      */
163 163
     public function addUniqueConstraint(array $constraint) : void
164 164
     {
165
-        if (! isset($constraint['name'])) {
165
+        if ( ! isset($constraint['name'])) {
166 166
             $this->uniqueConstraints[] = $constraint;
167 167
 
168 168
             return;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exception/UnknownGeneratorType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,6 +10,6 @@
 block discarded – undo
10 10
 {
11 11
     public static function create(string $generatorType) : self
12 12
     {
13
-        return new self('Unknown generator type: ' . $generatorType);
13
+        return new self('Unknown generator type: '.$generatorType);
14 14
     }
15 15
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ToManyAssociationMetadata.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         }
59 59
 
60 60
         // If $value is not a Collection then use an ArrayCollection.
61
-        if (! $collection instanceof Collection) {
61
+        if ( ! $collection instanceof Collection) {
62 62
             // @todo guilhermeblanco Conceptually, support to custom collections by replacing ArrayCollection creation.
63 63
             $collection = new ArrayCollection((array) $collection);
64 64
         }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $collection  = new PersistentCollection($entityManager, $targetClass, $collection);
69 69
 
70 70
         $collection->setOwner($owner, $this);
71
-        $collection->setDirty(! $collection->isEmpty());
71
+        $collection->setDirty( ! $collection->isEmpty());
72 72
         $collection->setInitialized(true);
73 73
 
74 74
         return $collection;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/CompositeValueGenerationPlan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function executeDeferred(EntityManagerInterface $entityManager, object $entity) : void
40 40
     {
41 41
         foreach ($this->executors as $executor) {
42
-            if (! $executor->isDeferred()) {
42
+            if ( ! $executor->isDeferred()) {
43 43
                 continue;
44 44
             }
45 45
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Sequencing/Planning/SingleValueGenerationPlan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
     public function executeImmediate(EntityManagerInterface $entityManager, object $entity) : void
26 26
     {
27
-        if (! $this->executor->isDeferred()) {
27
+        if ( ! $this->executor->isDeferred()) {
28 28
             $this->dispatchExecutor($entity, $entityManager);
29 29
         }
30 30
     }
Please login to merge, or discard this patch.