Completed
Push — master ( f4c848...d31188 )
by Jonathan
24s queued 17s
created
lib/Doctrine/ORM/Mapping/DefaultEntityListenerResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function register($object)
43 43
     {
44
-        if (! is_object($object)) {
44
+        if ( ! is_object($object)) {
45 45
             throw new \InvalidArgumentException(sprintf('An object was expected, but got "%s".', gettype($object)));
46 46
         }
47 47
 
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.
lib/Doctrine/ORM/Sequencing/TableGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
                         $this->allocationSize
59 59
                     );
60 60
 
61
-                    if ($conn->executeUpdate($updateSql, [1 => $currentLevel, 2 => $currentLevel+1]) !== 1) {
61
+                    if ($conn->executeUpdate($updateSql, [1 => $currentLevel, 2 => $currentLevel + 1]) !== 1) {
62 62
                         // no affected rows, concurrency issue, throw exception
63 63
                     }
64 64
                 } else {
Please login to merge, or discard this patch.
lib/Doctrine/ORM/PersistentObject.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     {
78 78
         if ($entityManager !== self::$entityManager) {
79 79
             throw new \RuntimeException(
80
-                'Trying to use PersistentObject with different EntityManager instances. ' .
80
+                'Trying to use PersistentObject with different EntityManager instances. '.
81 81
                 'Was PersistentObject::setEntityManager() called?'
82 82
             );
83 83
         }
@@ -102,8 +102,8 @@  discard block
 block discarded – undo
102 102
 
103 103
         $property = $this->cm->getProperty($field);
104 104
 
105
-        if (! $property) {
106
-            throw new \BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getClassName() . "'");
105
+        if ( ! $property) {
106
+            throw new \BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getClassName()."'");
107 107
         }
108 108
 
109 109
         switch (true) {
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
                 $targetClassName = $property->getTargetEntity();
116 116
 
117 117
                 if ($args[0] !== null && ! ($args[0] instanceof $targetClassName)) {
118
-                    throw new \InvalidArgumentException("Expected persistent object of type '" . $targetClassName . "'");
118
+                    throw new \InvalidArgumentException("Expected persistent object of type '".$targetClassName."'");
119 119
                 }
120 120
 
121 121
                 $this->{$field} = $args[0];
@@ -141,8 +141,8 @@  discard block
 block discarded – undo
141 141
 
142 142
         $property = $this->cm->getProperty($field);
143 143
 
144
-        if (! $property) {
145
-            throw new \BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getClassName() . "'");
144
+        if ( ! $property) {
145
+            throw new \BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getClassName()."'");
146 146
         }
147 147
 
148 148
         return $this->{$field};
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         $mappedByField    = $property->getMappedBy();
165 165
         $targetMetadata   = self::$entityManager->getClassMetadata($property->getTargetEntity());
166 166
         $targetProperty   = $targetMetadata->getProperty($mappedByField);
167
-        $setterMethodName = ($targetProperty instanceof ToManyAssociationMetadata ? 'add' : 'set') . $mappedByField;
167
+        $setterMethodName = ($targetProperty instanceof ToManyAssociationMetadata ? 'add' : 'set').$mappedByField;
168 168
 
169 169
         $targetObject->{$setterMethodName}($this);
170 170
     }
@@ -186,21 +186,21 @@  discard block
 block discarded – undo
186 186
 
187 187
         $property = $this->cm->getProperty($field);
188 188
 
189
-        if (! $property) {
190
-            throw new \BadMethodCallException("no field with name '" . $field . "' exists on '" . $this->cm->getClassName() . "'");
189
+        if ( ! $property) {
190
+            throw new \BadMethodCallException("no field with name '".$field."' exists on '".$this->cm->getClassName()."'");
191 191
         }
192 192
 
193
-        if (! ($property instanceof ToManyAssociationMetadata)) {
194
-            throw new \BadMethodCallException('There is no method add' . $field . '() on ' . $this->cm->getClassName());
193
+        if ( ! ($property instanceof ToManyAssociationMetadata)) {
194
+            throw new \BadMethodCallException('There is no method add'.$field.'() on '.$this->cm->getClassName());
195 195
         }
196 196
 
197 197
         $targetClassName = $property->getTargetEntity();
198 198
 
199
-        if (! ($args[0] instanceof $targetClassName)) {
200
-            throw new \InvalidArgumentException("Expected persistent object of type '" . $targetClassName . "'");
199
+        if ( ! ($args[0] instanceof $targetClassName)) {
200
+            throw new \InvalidArgumentException("Expected persistent object of type '".$targetClassName."'");
201 201
         }
202 202
 
203
-        if (! ($this->{$field} instanceof Collection)) {
203
+        if ( ! ($this->{$field} instanceof Collection)) {
204 204
             $this->{$field} = new ArrayCollection($this->{$field} ?: []);
205 205
         }
206 206
 
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
             return;
223 223
         }
224 224
 
225
-        if (! self::$entityManager) {
225
+        if ( ! self::$entityManager) {
226 226
             throw new \RuntimeException('No runtime entity manager set. Call PersistentObject#setEntityManager().');
227 227
         }
228 228
 
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
                 return $this->add($field, $args);
256 256
 
257 257
             default:
258
-                throw new \BadMethodCallException('There is no method ' . $method . ' on ' . $this->cm->getClassName());
258
+                throw new \BadMethodCallException('There is no method '.$method.' on '.$this->cm->getClassName());
259 259
         }
260 260
     }
261 261
 }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Event/PreUpdateEventArgs.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
      */
100 100
     private function assertValidField($field)
101 101
     {
102
-        if (! isset($this->entityChangeSet[$field])) {
102
+        if ( ! isset($this->entityChangeSet[$field])) {
103 103
             throw new \InvalidArgumentException(sprintf(
104 104
                 'Field "%s" is not a valid field of the entity "%s" in PreUpdateEventArgs.',
105 105
                 $field,
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Utility/NormalizeIdentifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $normalizedAssociatedId = [];
36 36
 
37 37
         foreach ($targetClass->getDeclaredPropertiesIterator() as $name => $declaredProperty) {
38
-            if (! array_key_exists($name, $flatIdentifier)) {
38
+            if ( ! array_key_exists($name, $flatIdentifier)) {
39 39
                 continue;
40 40
             }
41 41
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Utility/PersisterHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,14 +57,14 @@
 block discarded – undo
57 57
 
58 58
         // iterate over association mappings
59 59
         foreach ($class->getDeclaredPropertiesIterator() as $association) {
60
-            if (! ($association instanceof AssociationMetadata)) {
60
+            if ( ! ($association instanceof AssociationMetadata)) {
61 61
                 continue;
62 62
             }
63 63
 
64 64
             // resolve join columns over to-one or to-many
65 65
             $targetClass = $em->getClassMetadata($association->getTargetEntity());
66 66
 
67
-            if (! $association->isOwningSide()) {
67
+            if ( ! $association->isOwningSide()) {
68 68
                 $association = $targetClass->getProperty($association->getMappedBy());
69 69
                 $targetClass = $em->getClassMetadata($association->getTargetEntity());
70 70
             }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -254,8 +254,8 @@  discard block
 block discarded – undo
254 254
      */
255 255
     private function resolveMagicCall($method, $by, array $arguments)
256 256
     {
257
-        if (! $arguments) {
258
-            throw InvalidMagicMethodCall::onMissingParameter($method . $by);
257
+        if ( ! $arguments) {
258
+            throw InvalidMagicMethodCall::onMissingParameter($method.$by);
259 259
         }
260 260
 
261 261
         $fieldName = lcfirst(Inflector::classify($by));
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
             throw InvalidMagicMethodCall::becauseFieldNotFoundIn(
265 265
                 $this->entityName,
266 266
                 $fieldName,
267
-                $method . $by
267
+                $method.$by
268 268
             );
269 269
         }
270 270
 
Please login to merge, or discard this patch.