Passed
Pull Request — master (#7791)
by
unknown
10:37
created
lib/Doctrine/ORM/Mapping/Exporter/ToManyAssociationMetadataExporter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,16 +19,16 @@
 block discarded – undo
19 19
         /** @var ToManyAssociationMetadata $value */
20 20
         $variableExporter = new VariableExporter();
21 21
         $indentation      = str_repeat(self::INDENTATION, $indentationLevel);
22
-        $objectReference  = $indentation . self::VARIABLE;
22
+        $objectReference  = $indentation.self::VARIABLE;
23 23
         $lines            = [];
24 24
 
25 25
         $lines[] = parent::export($value, $indentationLevel);
26 26
 
27
-        if (! empty($value->getIndexedBy())) {
28
-            $lines[] = $objectReference . '->setIndexedBy("' . $value->getIndexedBy() . '"");';
27
+        if ( ! empty($value->getIndexedBy())) {
28
+            $lines[] = $objectReference.'->setIndexedBy("'.$value->getIndexedBy().'"");';
29 29
         }
30 30
 
31
-        $lines[] = $objectReference . '->setOderBy(' . $variableExporter->export($value->getOrderBy(), $indentationLevel + 1) . ');';
31
+        $lines[] = $objectReference.'->setOderBy('.$variableExporter->export($value->getOrderBy(), $indentationLevel + 1).');';
32 32
 
33 33
         return implode(PHP_EOL, $lines);
34 34
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/ColumnMetadataExporter.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,20 +22,20 @@
 block discarded – undo
22 22
         /** @var ColumnMetadata $value */
23 23
         $variableExporter = new VariableExporter();
24 24
         $indentation      = str_repeat(self::INDENTATION, $indentationLevel);
25
-        $objectReference  = $indentation . self::VARIABLE;
25
+        $objectReference  = $indentation.self::VARIABLE;
26 26
         $lines            = [];
27 27
 
28
-        $lines[] = $objectReference . ' = ' . $this->exportInstantiation($value);
28
+        $lines[] = $objectReference.' = '.$this->exportInstantiation($value);
29 29
 
30
-        if (! empty($value->getColumnDefinition())) {
31
-            $lines[] = $objectReference . '->setColumnDefinition("' . $value->getColumnDefinition() . '");';
30
+        if ( ! empty($value->getColumnDefinition())) {
31
+            $lines[] = $objectReference.'->setColumnDefinition("'.$value->getColumnDefinition().'");';
32 32
         }
33 33
 
34
-        $lines[] = $objectReference . '->setTableName("' . $value->getTableName() . '");';
35
-        $lines[] = $objectReference . '->setOptions(' . ltrim($variableExporter->export($value->getOptions(), $indentationLevel + 1)) . ');';
36
-        $lines[] = $objectReference . '->setPrimaryKey(' . ltrim($variableExporter->export($value->isPrimaryKey(), $indentationLevel + 1)) . ');';
37
-        $lines[] = $objectReference . '->setNullable(' . ltrim($variableExporter->export($value->isNullable(), $indentationLevel + 1)) . ');';
38
-        $lines[] = $objectReference . '->setUnique(' . ltrim($variableExporter->export($value->isUnique(), $indentationLevel + 1)) . ');';
34
+        $lines[] = $objectReference.'->setTableName("'.$value->getTableName().'");';
35
+        $lines[] = $objectReference.'->setOptions('.ltrim($variableExporter->export($value->getOptions(), $indentationLevel + 1)).');';
36
+        $lines[] = $objectReference.'->setPrimaryKey('.ltrim($variableExporter->export($value->isPrimaryKey(), $indentationLevel + 1)).');';
37
+        $lines[] = $objectReference.'->setNullable('.ltrim($variableExporter->export($value->isNullable(), $indentationLevel + 1)).');';
38
+        $lines[] = $objectReference.'->setUnique('.ltrim($variableExporter->export($value->isUnique(), $indentationLevel + 1)).');';
39 39
 
40 40
         return implode(PHP_EOL, $lines);
41 41
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/ManyToManyAssociationMetadataExporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         /** @var ManyToManyAssociationMetadata $value */
23 23
         $indentation     = str_repeat(self::INDENTATION, $indentationLevel);
24
-        $objectReference = $indentation . self::VARIABLE;
24
+        $objectReference = $indentation.self::VARIABLE;
25 25
         $lines           = [];
26 26
 
27 27
         $lines[] = parent::export($value, $indentationLevel);
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
             $lines[] = null;
33 33
             $lines[] = $joinTableExporter->export($value->getJoinTable(), $indentationLevel);
34 34
             $lines[] = null;
35
-            $lines[] = $objectReference . '->setJoinTable(' . $joinTableExporter::VARIABLE . ');';
35
+            $lines[] = $objectReference.'->setJoinTable('.$joinTableExporter::VARIABLE.');';
36 36
         }
37 37
 
38 38
         return implode(PHP_EOL, $lines);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/TransientMetadataExporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
     {
20 20
         /** @var TransientMetadata $value */
21 21
         $indentation     = str_repeat(self::INDENTATION, $indentationLevel);
22
-        $objectReference = $indentation . self::VARIABLE;
22
+        $objectReference = $indentation.self::VARIABLE;
23 23
 
24
-        return $objectReference . ' = ' . $this->exportInstantiation($value);
24
+        return $objectReference.' = '.$this->exportInstantiation($value);
25 25
     }
26 26
 
27 27
     protected function exportInstantiation(TransientMetadata $metadata) : string
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/Exporter/CacheMetadataExporter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
     {
23 23
         /** @var CacheMetadata $value */
24 24
         $indentation     = str_repeat(self::INDENTATION, $indentationLevel);
25
-        $objectReference = $indentation . self::VARIABLE;
25
+        $objectReference = $indentation.self::VARIABLE;
26 26
         $lines           = [];
27 27
 
28
-        $lines[] = $objectReference . ' = ' . $this->exportInstantiation($value);
28
+        $lines[] = $objectReference.' = '.$this->exportInstantiation($value);
29 29
 
30 30
         return implode(PHP_EOL, $lines);
31 31
     }
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/ResultSetMappingBuilder.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
         $classMetadata = $this->em->getClassMetadata($class);
123 123
         $platform      = $this->em->getConnection()->getDatabasePlatform();
124 124
 
125
-        if (! $this->isInheritanceSupported($classMetadata)) {
125
+        if ( ! $this->isInheritanceSupported($classMetadata)) {
126 126
             throw new InvalidArgumentException(
127 127
                 'ResultSetMapping builder does not currently support your inheritance scheme.'
128 128
             );
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
                             );
163 163
                         }
164 164
 
165
-                        if (! $joinColumn->getType()) {
165
+                        if ( ! $joinColumn->getType()) {
166 166
                             $joinColumn->setType(PersisterHelper::getTypeOfColumn($referencedColumnName, $targetClass, $this->em));
167 167
                         }
168 168
 
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     {
202 202
         switch ($mode) {
203 203
             case self::COLUMN_RENAMING_INCREMENT:
204
-                return $columnName . $this->sqlCounter++;
204
+                return $columnName.$this->sqlCounter++;
205 205
             case self::COLUMN_RENAMING_CUSTOM:
206 206
                 return $customRenameColumns[$columnName] ?? $columnName;
207 207
             case self::COLUMN_RENAMING_NONE:
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
                 $sql .= ', ';
231 231
             }
232 232
 
233
-            $sql .= $tableAlias . '.';
233
+            $sql .= $tableAlias.'.';
234 234
 
235 235
             if (isset($this->fieldMappings[$columnName])) {
236 236
                 $class = $this->em->getClassMetadata($this->declaringClasses[$columnName]);
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
                 $sql .= $this->discriminatorColumns[$dqlAlias];
243 243
             }
244 244
 
245
-            $sql .= ' AS ' . $columnName;
245
+            $sql .= ' AS '.$columnName;
246 246
         }
247 247
 
248 248
         return $sql;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/QueryExpressionVisitor.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             case CompositeExpression::TYPE_OR:
95 95
                 return new Expr\Orx($expressionList);
96 96
             default:
97
-                throw new RuntimeException('Unknown composite ' . $expr->getType());
97
+                throw new RuntimeException('Unknown composite '.$expr->getType());
98 98
         }
99 99
     }
100 100
 
@@ -103,14 +103,14 @@  discard block
 block discarded – undo
103 103
      */
104 104
     public function walkComparison(Comparison $comparison)
105 105
     {
106
-        if (! isset($this->queryAliases[0])) {
106
+        if ( ! isset($this->queryAliases[0])) {
107 107
             throw new QueryException('No aliases are set before invoking walkComparison().');
108 108
         }
109 109
 
110
-        $field = $this->queryAliases[0] . '.' . $comparison->getField();
110
+        $field = $this->queryAliases[0].'.'.$comparison->getField();
111 111
 
112 112
         foreach ($this->queryAliases as $alias) {
113
-            if (strpos($comparison->getField() . '.', $alias . '.') === 0) {
113
+            if (strpos($comparison->getField().'.', $alias.'.') === 0) {
114 114
                 $field = $comparison->getField();
115 115
                 break;
116 116
             }
@@ -121,13 +121,13 @@  discard block
 block discarded – undo
121 121
 
122 122
         foreach ($this->parameters as $parameter) {
123 123
             if ($parameter->getName() === $parameterName) {
124
-                $parameterName .= '_' . $parameterCount;
124
+                $parameterName .= '_'.$parameterCount;
125 125
                 break;
126 126
             }
127 127
         }
128 128
 
129 129
         $parameter   = new Parameter($parameterName, $this->walkValue($comparison->getValue()));
130
-        $placeholder = ':' . $parameterName;
130
+        $placeholder = ':'.$parameterName;
131 131
 
132 132
         switch ($comparison->getOperator()) {
133 133
             case Comparison::IN:
@@ -154,17 +154,17 @@  discard block
 block discarded – undo
154 154
 
155 155
                 return $this->expr->neq($field, $placeholder);
156 156
             case Comparison::CONTAINS:
157
-                $parameter->setValue('%' . $parameter->getValue() . '%', $parameter->getType());
157
+                $parameter->setValue('%'.$parameter->getValue().'%', $parameter->getType());
158 158
                 $this->parameters[] = $parameter;
159 159
 
160 160
                 return $this->expr->like($field, $placeholder);
161 161
             case Comparison::STARTS_WITH:
162
-                $parameter->setValue($parameter->getValue() . '%', $parameter->getType());
162
+                $parameter->setValue($parameter->getValue().'%', $parameter->getType());
163 163
                 $this->parameters[] = $parameter;
164 164
 
165 165
                 return $this->expr->like($field, $placeholder);
166 166
             case Comparison::ENDS_WITH:
167
-                $parameter->setValue('%' . $parameter->getValue(), $parameter->getType());
167
+                $parameter->setValue('%'.$parameter->getValue(), $parameter->getType());
168 168
                 $this->parameters[] = $parameter;
169 169
 
170 170
                 return $this->expr->like($field, $placeholder);
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
                     );
181 181
                 }
182 182
 
183
-                throw new RuntimeException('Unknown comparison operator: ' . $comparison->getOperator());
183
+                throw new RuntimeException('Unknown comparison operator: '.$comparison->getOperator());
184 184
         }
185 185
     }
186 186
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Reflection/StaticReflectionService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     public function getClassShortName(string $className) : string
31 31
     {
32 32
         if (strpos($className, '\\') !== false) {
33
-            $className = substr($className, strrpos($className, '\\')+1);
33
+            $className = substr($className, strrpos($className, '\\') + 1);
34 34
         }
35 35
 
36 36
         return $className;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $namespace = '';
45 45
 
46 46
         if (strpos($className, '\\') !== false) {
47
-            $namespace = strrev(substr(strrev($className), strpos(strrev($className), '\\')+1));
47
+            $namespace = strrev(substr(strrev($className), strpos(strrev($className), '\\') + 1));
48 48
         }
49 49
 
50 50
         return $namespace;
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 
233 233
         // Check query cache.
234 234
         $queryCache = $this->getQueryCacheDriver();
235
-        if (! ($this->useQueryCache && $queryCache)) {
235
+        if ( ! ($this->useQueryCache && $queryCache)) {
236 236
             $parser = new Parser($this);
237 237
 
238 238
             $this->parserResult = $parser->parse();
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
         foreach ($this->parameters as $parameter) {
368 368
             $key = $parameter->getName();
369 369
 
370
-            if (! isset($paramMappings[$key])) {
370
+            if ( ! isset($paramMappings[$key])) {
371 371
                 throw QueryException::unknownParameter($key);
372 372
             }
373 373
 
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
     public function setLockMode($lockMode)
697 697
     {
698 698
         if (in_array($lockMode, [LockMode::NONE, LockMode::PESSIMISTIC_READ, LockMode::PESSIMISTIC_WRITE], true)) {
699
-            if (! $this->em->getConnection()->isTransactionActive()) {
699
+            if ( ! $this->em->getConnection()->isTransactionActive()) {
700 700
                 throw TransactionRequiredException::transactionRequired();
701 701
             }
702 702
         }
@@ -737,11 +737,11 @@  discard block
 block discarded – undo
737 737
             ->getName();
738 738
 
739 739
         return md5(
740
-            $this->getDQL() . serialize($this->hints) .
741
-            '&platform=' . $platform .
742
-            ($this->em->hasFilters() ? $this->em->getFilters()->getHash() : '') .
743
-            '&firstResult=' . $this->firstResult . '&maxResult=' . $this->maxResults .
744
-            '&hydrationMode=' . $this->hydrationMode . '&types=' . serialize($this->parsedTypes) . 'DOCTRINE_QUERY_CACHE_SALT'
740
+            $this->getDQL().serialize($this->hints).
741
+            '&platform='.$platform.
742
+            ($this->em->hasFilters() ? $this->em->getFilters()->getHash() : '').
743
+            '&firstResult='.$this->firstResult.'&maxResult='.$this->maxResults.
744
+            '&hydrationMode='.$this->hydrationMode.'&types='.serialize($this->parsedTypes).'DOCTRINE_QUERY_CACHE_SALT'
745 745
         );
746 746
     }
747 747
 
@@ -750,7 +750,7 @@  discard block
 block discarded – undo
750 750
      */
751 751
     protected function getHash()
752 752
     {
753
-        return sha1(parent::getHash() . '-' . $this->firstResult . '-' . $this->maxResults);
753
+        return sha1(parent::getHash().'-'.$this->firstResult.'-'.$this->maxResults);
754 754
     }
755 755
 
756 756
     /**
Please login to merge, or discard this patch.