@@ -227,8 +227,8 @@ discard block |
||
| 227 | 227 | */ |
| 228 | 228 | public function transactional($func) |
| 229 | 229 | { |
| 230 | - if (!is_callable($func)) { |
|
| 231 | - throw new \InvalidArgumentException('Expected argument of type "callable", got "' . gettype($func) . '"'); |
|
| 230 | + if ( ! is_callable($func)) { |
|
| 231 | + throw new \InvalidArgumentException('Expected argument of type "callable", got "'.gettype($func).'"'); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | $this->conn->beginTransaction(); |
@@ -358,7 +358,7 @@ discard block |
||
| 358 | 358 | { |
| 359 | 359 | if ($entity !== null) { |
| 360 | 360 | @trigger_error( |
| 361 | - 'Calling ' . __METHOD__ . '() with any arguments to flush specific entities is deprecated and will not be supported in Doctrine ORM 3.0.', |
|
| 361 | + 'Calling '.__METHOD__.'() with any arguments to flush specific entities is deprecated and will not be supported in Doctrine ORM 3.0.', |
|
| 362 | 362 | E_USER_DEPRECATED |
| 363 | 363 | ); |
| 364 | 364 | } |
@@ -558,7 +558,7 @@ discard block |
||
| 558 | 558 | |
| 559 | 559 | if ($entityName !== null) { |
| 560 | 560 | @trigger_error( |
| 561 | - 'Calling ' . __METHOD__ . '() with any arguments to clear specific entities is deprecated and will not be supported in Doctrine ORM 3.0.', |
|
| 561 | + 'Calling '.__METHOD__.'() with any arguments to clear specific entities is deprecated and will not be supported in Doctrine ORM 3.0.', |
|
| 562 | 562 | E_USER_DEPRECATED |
| 563 | 563 | ); |
| 564 | 564 | } |
@@ -670,7 +670,7 @@ discard block |
||
| 670 | 670 | */ |
| 671 | 671 | public function detach($entity) |
| 672 | 672 | { |
| 673 | - @trigger_error('Method ' . __METHOD__ . '() is deprecated and will be removed in Doctrine ORM 3.0.', E_USER_DEPRECATED); |
|
| 673 | + @trigger_error('Method '.__METHOD__.'() is deprecated and will be removed in Doctrine ORM 3.0.', E_USER_DEPRECATED); |
|
| 674 | 674 | |
| 675 | 675 | if ( ! is_object($entity)) { |
| 676 | 676 | throw ORMInvalidArgumentException::invalidObject('EntityManager#detach()', $entity); |
@@ -695,7 +695,7 @@ discard block |
||
| 695 | 695 | */ |
| 696 | 696 | public function merge($entity) |
| 697 | 697 | { |
| 698 | - @trigger_error('Method ' . __METHOD__ . '() is deprecated and will be removed in Doctrine ORM 3.0.', E_USER_DEPRECATED); |
|
| 698 | + @trigger_error('Method '.__METHOD__.'() is deprecated and will be removed in Doctrine ORM 3.0.', E_USER_DEPRECATED); |
|
| 699 | 699 | |
| 700 | 700 | if ( ! is_object($entity)) { |
| 701 | 701 | throw ORMInvalidArgumentException::invalidObject('EntityManager#merge()', $entity); |
@@ -711,7 +711,7 @@ discard block |
||
| 711 | 711 | */ |
| 712 | 712 | public function copy($entity, $deep = false) |
| 713 | 713 | { |
| 714 | - @trigger_error('Method ' . __METHOD__ . '() is deprecated and will be removed in Doctrine ORM 3.0.', E_USER_DEPRECATED); |
|
| 714 | + @trigger_error('Method '.__METHOD__.'() is deprecated and will be removed in Doctrine ORM 3.0.', E_USER_DEPRECATED); |
|
| 715 | 715 | |
| 716 | 716 | throw new \BadMethodCallException("Not implemented."); |
| 717 | 717 | } |
@@ -785,7 +785,7 @@ discard block |
||
| 785 | 785 | */ |
| 786 | 786 | public function isOpen() |
| 787 | 787 | { |
| 788 | - return (!$this->closed); |
|
| 788 | + return ( ! $this->closed); |
|
| 789 | 789 | } |
| 790 | 790 | |
| 791 | 791 | /** |
@@ -896,7 +896,7 @@ discard block |
||
| 896 | 896 | sprintf( |
| 897 | 897 | 'Invalid $connection argument of type %s given%s.', |
| 898 | 898 | is_object($connection) ? get_class($connection) : gettype($connection), |
| 899 | - is_object($connection) ? '' : ': "' . $connection . '"' |
|
| 899 | + is_object($connection) ? '' : ': "'.$connection.'"' |
|
| 900 | 900 | ) |
| 901 | 901 | ); |
| 902 | 902 | } |
@@ -946,13 +946,13 @@ discard block |
||
| 946 | 946 | { |
| 947 | 947 | switch ($lockMode) { |
| 948 | 948 | case LockMode::OPTIMISTIC: |
| 949 | - if (!$class->isVersioned) { |
|
| 949 | + if ( ! $class->isVersioned) { |
|
| 950 | 950 | throw OptimisticLockException::notVersioned($class->name); |
| 951 | 951 | } |
| 952 | 952 | break; |
| 953 | 953 | case LockMode::PESSIMISTIC_READ: |
| 954 | 954 | case LockMode::PESSIMISTIC_WRITE: |
| 955 | - if (!$this->getConnection()->isTransactionActive()) { |
|
| 955 | + if ( ! $this->getConnection()->isTransactionActive()) { |
|
| 956 | 956 | throw TransactionRequiredException::transactionRequired(); |
| 957 | 957 | } |
| 958 | 958 | } |
@@ -60,9 +60,9 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | public function __construct($case = CASE_LOWER, bool $numberAware = false) |
| 62 | 62 | { |
| 63 | - if (! $numberAware) { |
|
| 63 | + if ( ! $numberAware) { |
|
| 64 | 64 | @trigger_error( |
| 65 | - 'Creating ' . self::class . ' without making it number aware is deprecated and will be removed in Doctrine ORM 3.0.', |
|
| 65 | + 'Creating '.self::class.' without making it number aware is deprecated and will be removed in Doctrine ORM 3.0.', |
|
| 66 | 66 | E_USER_DEPRECATED |
| 67 | 67 | ); |
| 68 | 68 | } |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | public function referenceColumnName() |
| 127 | 127 | { |
| 128 | - return $this->case === CASE_UPPER ? 'ID' : 'id'; |
|
| 128 | + return $this->case === CASE_UPPER ? 'ID' : 'id'; |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | 131 | /** |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | */ |
| 134 | 134 | public function joinColumnName($propertyName, $className = null) |
| 135 | 135 | { |
| 136 | - return $this->underscore($propertyName) . '_' . $this->referenceColumnName(); |
|
| 136 | + return $this->underscore($propertyName).'_'.$this->referenceColumnName(); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | */ |
| 142 | 142 | public function joinTableName($sourceEntity, $targetEntity, $propertyName = null) |
| 143 | 143 | { |
| 144 | - return $this->classToTableName($sourceEntity) . '_' . $this->classToTableName($targetEntity); |
|
| 144 | + return $this->classToTableName($sourceEntity).'_'.$this->classToTableName($targetEntity); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | /** |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | */ |
| 150 | 150 | public function joinKeyColumnName($entityName, $referencedColumnName = null) |
| 151 | 151 | { |
| 152 | - return $this->classToTableName($entityName) . '_' . |
|
| 152 | + return $this->classToTableName($entityName).'_'. |
|
| 153 | 153 | ($referencedColumnName ?: $this->referenceColumnName()); |
| 154 | 154 | } |
| 155 | 155 | |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | |
| 302 | 302 | $queryCount = $this->getCurrentQueryCount(); |
| 303 | 303 | $this->assertFalse($user->articles->contains($article)); |
| 304 | - $this->assertEquals($queryCount+1, $this->getCurrentQueryCount(), 'Checking for contains of persisted entity should cause one query to be executed.'); |
|
| 304 | + $this->assertEquals($queryCount + 1, $this->getCurrentQueryCount(), 'Checking for contains of persisted entity should cause one query to be executed.'); |
|
| 305 | 305 | $this->assertFalse($user->articles->isInitialized(), 'Post-Condition: Collection is not initialized.'); |
| 306 | 306 | |
| 307 | 307 | // Test One to Many existence with state managed |
@@ -468,7 +468,7 @@ discard block |
||
| 468 | 468 | |
| 469 | 469 | $queryCount = $this->getCurrentQueryCount(); |
| 470 | 470 | $this->assertTrue($group->users->contains($user)); |
| 471 | - $this->assertEquals($queryCount+1, $this->getCurrentQueryCount(), 'Checking for contains of managed entity should cause one query to be executed.'); |
|
| 471 | + $this->assertEquals($queryCount + 1, $this->getCurrentQueryCount(), 'Checking for contains of managed entity should cause one query to be executed.'); |
|
| 472 | 472 | $this->assertFalse($user->groups->isInitialized(), 'Post-Condition: Collection is not initialized.'); |
| 473 | 473 | |
| 474 | 474 | $newUser = new CmsUser(); |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | |
| 50 | 50 | $user->tweets->removeElement($tweet); |
| 51 | 51 | |
| 52 | - $tweets = $user->tweets->map(static function (GH7864Tweet $tweet) { |
|
| 52 | + $tweets = $user->tweets->map(static function(GH7864Tweet $tweet) { |
|
| 53 | 53 | return $tweet->content; |
| 54 | 54 | }); |
| 55 | 55 | |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | foreach ($joinColumns as $joinColumn) { |
| 132 | 132 | $columnName = $this->quoteStrategy->getJoinColumnName($joinColumn, $sourceClass, $this->platform); |
| 133 | 133 | $referencedName = $joinColumn['referencedColumnName']; |
| 134 | - $conditions[] = 't.' . $columnName . ' = ?'; |
|
| 134 | + $conditions[] = 't.'.$columnName.' = ?'; |
|
| 135 | 135 | $params[] = $id[$sourceClass->getFieldForColumn($referencedName)]; |
| 136 | 136 | $types[] = PersisterHelper::getTypeOfColumn($referencedName, $sourceClass, $this->em); |
| 137 | 137 | } |
@@ -160,9 +160,9 @@ discard block |
||
| 160 | 160 | }*/ |
| 161 | 161 | |
| 162 | 162 | $sql = 'SELECT COUNT(*)' |
| 163 | - . ' FROM ' . $joinTableName . ' t' |
|
| 163 | + . ' FROM '.$joinTableName.' t' |
|
| 164 | 164 | . $joinTargetEntitySQL |
| 165 | - . ' WHERE ' . implode(' AND ', $conditions); |
|
| 165 | + . ' WHERE '.implode(' AND ', $conditions); |
|
| 166 | 166 | |
| 167 | 167 | return $this->conn->fetchColumn($sql, $params, 0, $types); |
| 168 | 168 | } |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | |
| 191 | 191 | list($quotedJoinTable, $whereClauses, $params, $types) = $this->getJoinTableRestrictionsWithKey($collection, $key, true); |
| 192 | 192 | |
| 193 | - $sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses); |
|
| 193 | + $sql = 'SELECT 1 FROM '.$quotedJoinTable.' WHERE '.implode(' AND ', $whereClauses); |
|
| 194 | 194 | |
| 195 | 195 | return (bool) $this->conn->fetchColumn($sql, $params, 0, $types); |
| 196 | 196 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | |
| 207 | 207 | list($quotedJoinTable, $whereClauses, $params, $types) = $this->getJoinTableRestrictions($collection, $element, true); |
| 208 | 208 | |
| 209 | - $sql = 'SELECT 1 FROM ' . $quotedJoinTable . ' WHERE ' . implode(' AND ', $whereClauses); |
|
| 209 | + $sql = 'SELECT 1 FROM '.$quotedJoinTable.' WHERE '.implode(' AND ', $whereClauses); |
|
| 210 | 210 | |
| 211 | 211 | return (bool) $this->conn->fetchColumn($sql, $params, 0, $types); |
| 212 | 212 | } |
@@ -256,11 +256,11 @@ discard block |
||
| 256 | 256 | $rsm = new Query\ResultSetMappingBuilder($this->em); |
| 257 | 257 | $rsm->addRootEntityFromClassMetadata($targetClass->name, 'te'); |
| 258 | 258 | |
| 259 | - $sql = 'SELECT ' . $rsm->generateSelectClause() |
|
| 260 | - . ' FROM ' . $tableName . ' te' |
|
| 261 | - . ' JOIN ' . $joinTable . ' t ON' |
|
| 259 | + $sql = 'SELECT '.$rsm->generateSelectClause() |
|
| 260 | + . ' FROM '.$tableName.' te' |
|
| 261 | + . ' JOIN '.$joinTable.' t ON' |
|
| 262 | 262 | . implode(' AND ', $onConditions) |
| 263 | - . ' WHERE ' . implode(' AND ', $whereClauses); |
|
| 263 | + . ' WHERE '.implode(' AND ', $whereClauses); |
|
| 264 | 264 | |
| 265 | 265 | $sql .= $this->getOrderingSql($criteria, $targetClass); |
| 266 | 266 | |
@@ -301,8 +301,8 @@ discard block |
||
| 301 | 301 | |
| 302 | 302 | // A join is needed if there is filtering on the target entity |
| 303 | 303 | $tableName = $this->quoteStrategy->getTableName($rootClass, $this->platform); |
| 304 | - $joinSql = ' JOIN ' . $tableName . ' te' |
|
| 305 | - . ' ON' . implode(' AND ', $this->getOnConditionSQL($mapping)); |
|
| 304 | + $joinSql = ' JOIN '.$tableName.' te' |
|
| 305 | + . ' ON'.implode(' AND ', $this->getOnConditionSQL($mapping)); |
|
| 306 | 306 | |
| 307 | 307 | return [$joinSql, $filterSql]; |
| 308 | 308 | } |
@@ -321,12 +321,12 @@ discard block |
||
| 321 | 321 | |
| 322 | 322 | foreach ($this->em->getFilters()->getEnabledFilters() as $filter) { |
| 323 | 323 | if ($filterExpr = $filter->addFilterConstraint($targetEntity, $targetTableAlias)) { |
| 324 | - $filterClauses[] = '(' . $filterExpr . ')'; |
|
| 324 | + $filterClauses[] = '('.$filterExpr.')'; |
|
| 325 | 325 | } |
| 326 | 326 | } |
| 327 | 327 | |
| 328 | 328 | return $filterClauses |
| 329 | - ? '(' . implode(' AND ', $filterClauses) . ')' |
|
| 329 | + ? '('.implode(' AND ', $filterClauses).')' |
|
| 330 | 330 | : ''; |
| 331 | 331 | } |
| 332 | 332 | |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | $joinColumnName = $this->quoteStrategy->getJoinColumnName($joinColumn, $targetClass, $this->platform); |
| 355 | 355 | $refColumnName = $this->quoteStrategy->getReferencedJoinColumnName($joinColumn, $targetClass, $this->platform); |
| 356 | 356 | |
| 357 | - $conditions[] = ' t.' . $joinColumnName . ' = ' . 'te.' . $refColumnName; |
|
| 357 | + $conditions[] = ' t.'.$joinColumnName.' = '.'te.'.$refColumnName; |
|
| 358 | 358 | } |
| 359 | 359 | |
| 360 | 360 | return $conditions; |
@@ -376,8 +376,8 @@ discard block |
||
| 376 | 376 | $columns[] = $this->quoteStrategy->getJoinColumnName($joinColumn, $class, $this->platform); |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | - return 'DELETE FROM ' . $joinTable |
|
| 380 | - . ' WHERE ' . implode(' = ? AND ', $columns) . ' = ?'; |
|
| 379 | + return 'DELETE FROM '.$joinTable |
|
| 380 | + . ' WHERE '.implode(' = ? AND ', $columns).' = ?'; |
|
| 381 | 381 | } |
| 382 | 382 | |
| 383 | 383 | /** |
@@ -436,8 +436,8 @@ discard block |
||
| 436 | 436 | } |
| 437 | 437 | |
| 438 | 438 | return [ |
| 439 | - 'DELETE FROM ' . $this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform) |
|
| 440 | - . ' WHERE ' . implode(' = ? AND ', $columns) . ' = ?', |
|
| 439 | + 'DELETE FROM '.$this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform) |
|
| 440 | + . ' WHERE '.implode(' = ? AND ', $columns).' = ?', |
|
| 441 | 441 | $types, |
| 442 | 442 | ]; |
| 443 | 443 | } |
@@ -485,10 +485,10 @@ discard block |
||
| 485 | 485 | } |
| 486 | 486 | |
| 487 | 487 | return [ |
| 488 | - 'INSERT INTO ' . $this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform) |
|
| 489 | - . ' (' . implode(', ', $columns) . ')' |
|
| 488 | + 'INSERT INTO '.$this->quoteStrategy->getJoinTableName($mapping, $class, $this->platform) |
|
| 489 | + . ' ('.implode(', ', $columns).')' |
|
| 490 | 490 | . ' VALUES' |
| 491 | - . ' (' . implode(', ', array_fill(0, count($columns), '?')) . ')', |
|
| 491 | + . ' ('.implode(', ', array_fill(0, count($columns), '?')).')', |
|
| 492 | 492 | $types, |
| 493 | 493 | ]; |
| 494 | 494 | } |
@@ -574,7 +574,7 @@ discard block |
||
| 574 | 574 | $sourceClass = $this->em->getClassMetadata($mapping['sourceEntity']); |
| 575 | 575 | $targetClass = $this->em->getClassMetadata($mapping['targetEntity']); |
| 576 | 576 | |
| 577 | - if (! $mapping['isOwningSide']) { |
|
| 577 | + if ( ! $mapping['isOwningSide']) { |
|
| 578 | 578 | $associationSourceClass = $this->em->getClassMetadata($mapping['targetEntity']); |
| 579 | 579 | $mapping = $associationSourceClass->associationMappings[$mapping['mappedBy']]; |
| 580 | 580 | $joinColumns = $mapping['joinTable']['joinColumns']; |
@@ -587,7 +587,7 @@ discard block |
||
| 587 | 587 | $targetRelationMode = 'relationToTargetKeyColumns'; |
| 588 | 588 | } |
| 589 | 589 | |
| 590 | - $quotedJoinTable = $this->quoteStrategy->getJoinTableName($mapping, $associationSourceClass, $this->platform). ' t'; |
|
| 590 | + $quotedJoinTable = $this->quoteStrategy->getJoinTableName($mapping, $associationSourceClass, $this->platform).' t'; |
|
| 591 | 591 | $whereClauses = []; |
| 592 | 592 | $params = []; |
| 593 | 593 | $types = []; |
@@ -598,14 +598,14 @@ discard block |
||
| 598 | 598 | $joinConditions = []; |
| 599 | 599 | |
| 600 | 600 | foreach ($joinColumns as $joinTableColumn) { |
| 601 | - $joinConditions[] = 't.' . $joinTableColumn['name'] . ' = tr.' . $joinTableColumn['referencedColumnName']; |
|
| 601 | + $joinConditions[] = 't.'.$joinTableColumn['name'].' = tr.'.$joinTableColumn['referencedColumnName']; |
|
| 602 | 602 | } |
| 603 | 603 | |
| 604 | 604 | $tableName = $this->quoteStrategy->getTableName($targetClass, $this->platform); |
| 605 | - $quotedJoinTable .= ' JOIN ' . $tableName . ' tr ON ' . implode(' AND ', $joinConditions); |
|
| 605 | + $quotedJoinTable .= ' JOIN '.$tableName.' tr ON '.implode(' AND ', $joinConditions); |
|
| 606 | 606 | $columnName = $targetClass->getColumnName($indexBy); |
| 607 | 607 | |
| 608 | - $whereClauses[] = 'tr.' . $columnName . ' = ?'; |
|
| 608 | + $whereClauses[] = 'tr.'.$columnName.' = ?'; |
|
| 609 | 609 | $params[] = $key; |
| 610 | 610 | $types[] = PersisterHelper::getTypeOfColumn($columnName, $targetClass, $this->em); |
| 611 | 611 | } |
@@ -613,7 +613,7 @@ discard block |
||
| 613 | 613 | foreach ($mapping['joinTableColumns'] as $joinTableColumn) { |
| 614 | 614 | if (isset($mapping[$sourceRelationMode][$joinTableColumn])) { |
| 615 | 615 | $column = $mapping[$sourceRelationMode][$joinTableColumn]; |
| 616 | - $whereClauses[] = 't.' . $joinTableColumn . ' = ?'; |
|
| 616 | + $whereClauses[] = 't.'.$joinTableColumn.' = ?'; |
|
| 617 | 617 | $params[] = $sourceClass->containsForeignIdentifier |
| 618 | 618 | ? $id[$sourceClass->getFieldForColumn($column)] |
| 619 | 619 | : $id[$sourceClass->fieldNames[$column]]; |
@@ -621,7 +621,7 @@ discard block |
||
| 621 | 621 | } elseif ( ! $joinNeeded) { |
| 622 | 622 | $column = $mapping[$targetRelationMode][$joinTableColumn]; |
| 623 | 623 | |
| 624 | - $whereClauses[] = 't.' . $joinTableColumn . ' = ?'; |
|
| 624 | + $whereClauses[] = 't.'.$joinTableColumn.' = ?'; |
|
| 625 | 625 | $params[] = $key; |
| 626 | 626 | $types[] = PersisterHelper::getTypeOfColumn($column, $targetClass, $this->em); |
| 627 | 627 | } |
@@ -631,7 +631,7 @@ discard block |
||
| 631 | 631 | list($joinTargetEntitySQL, $filterSql) = $this->getFilterSql($filterMapping); |
| 632 | 632 | |
| 633 | 633 | if ($filterSql) { |
| 634 | - $quotedJoinTable .= ' ' . $joinTargetEntitySQL; |
|
| 634 | + $quotedJoinTable .= ' '.$joinTargetEntitySQL; |
|
| 635 | 635 | $whereClauses[] = $filterSql; |
| 636 | 636 | } |
| 637 | 637 | } |
@@ -675,7 +675,7 @@ discard block |
||
| 675 | 675 | $types = []; |
| 676 | 676 | |
| 677 | 677 | foreach ($mapping['joinTableColumns'] as $joinTableColumn) { |
| 678 | - $whereClauses[] = ($addFilters ? 't.' : '') . $joinTableColumn . ' = ?'; |
|
| 678 | + $whereClauses[] = ($addFilters ? 't.' : '').$joinTableColumn.' = ?'; |
|
| 679 | 679 | |
| 680 | 680 | if (isset($mapping['relationToTargetKeyColumns'][$joinTableColumn])) { |
| 681 | 681 | $targetColumn = $mapping['relationToTargetKeyColumns'][$joinTableColumn]; |
@@ -697,7 +697,7 @@ discard block |
||
| 697 | 697 | list($joinTargetEntitySQL, $filterSql) = $this->getFilterSql($filterMapping); |
| 698 | 698 | |
| 699 | 699 | if ($filterSql) { |
| 700 | - $quotedJoinTable .= ' ' . $joinTargetEntitySQL; |
|
| 700 | + $quotedJoinTable .= ' '.$joinTargetEntitySQL; |
|
| 701 | 701 | $whereClauses[] = $filterSql; |
| 702 | 702 | } |
| 703 | 703 | } |
@@ -746,10 +746,10 @@ discard block |
||
| 746 | 746 | $targetClass, |
| 747 | 747 | $this->platform |
| 748 | 748 | ); |
| 749 | - $orderBy[] = $field . ' ' . $direction; |
|
| 749 | + $orderBy[] = $field.' '.$direction; |
|
| 750 | 750 | } |
| 751 | 751 | |
| 752 | - return ' ORDER BY ' . implode(', ', $orderBy); |
|
| 752 | + return ' ORDER BY '.implode(', ', $orderBy); |
|
| 753 | 753 | } |
| 754 | 754 | return ''; |
| 755 | 755 | } |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | $this->ignoredDeprecations = []; |
| 31 | 31 | |
| 32 | 32 | $this->originalHandler = set_error_handler( |
| 33 | - function (int $errorNumber, string $errorMessage) : void { |
|
| 33 | + function(int $errorNumber, string $errorMessage) : void { |
|
| 34 | 34 | if (in_array($errorMessage, $this->ignoredDeprecations, true)) { |
| 35 | 35 | return; |
| 36 | 36 | } |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | $targetEntity = current( |
| 227 | 227 | array_filter( |
| 228 | 228 | $classes, |
| 229 | - function (ClassMetadata $class) use ($idMapping) : bool { |
|
| 229 | + function(ClassMetadata $class) use ($idMapping) : bool { |
|
| 230 | 230 | return $class->name === $idMapping['targetEntity']; |
| 231 | 231 | } |
| 232 | 232 | ) |
@@ -646,8 +646,8 @@ discard block |
||
| 646 | 646 | |
| 647 | 647 | if ( ! $definingClass) { |
| 648 | 648 | throw new \Doctrine\ORM\ORMException( |
| 649 | - 'Column name `' . $joinColumn['referencedColumnName'] . '` referenced for relation from ' |
|
| 650 | - . $mapping['sourceEntity'] . ' towards ' . $mapping['targetEntity'] . ' does not exist.' |
|
| 649 | + 'Column name `'.$joinColumn['referencedColumnName'].'` referenced for relation from ' |
|
| 650 | + . $mapping['sourceEntity'].' towards '.$mapping['targetEntity'].' does not exist.' |
|
| 651 | 651 | ); |
| 652 | 652 | } |
| 653 | 653 | |
@@ -742,7 +742,7 @@ discard block |
||
| 742 | 742 | */ |
| 743 | 743 | private function gatherColumnOptions(array $mapping) : array |
| 744 | 744 | { |
| 745 | - if (! isset($mapping['options'])) { |
|
| 745 | + if ( ! isset($mapping['options'])) { |
|
| 746 | 746 | return []; |
| 747 | 747 | } |
| 748 | 748 | |
@@ -848,7 +848,7 @@ discard block |
||
| 848 | 848 | if ($table->hasPrimaryKey()) { |
| 849 | 849 | $columns = $table->getPrimaryKey()->getColumns(); |
| 850 | 850 | if (count($columns) == 1) { |
| 851 | - $checkSequence = $table->getName() . '_' . $columns[0] . '_seq'; |
|
| 851 | + $checkSequence = $table->getName().'_'.$columns[0].'_seq'; |
|
| 852 | 852 | if ($fullSchema->hasSequence($checkSequence)) { |
| 853 | 853 | $visitor->acceptSequence($fullSchema->getSequence($checkSequence)); |
| 854 | 854 | } |
@@ -922,7 +922,7 @@ discard block |
||
| 922 | 922 | } |
| 923 | 923 | |
| 924 | 924 | // whitelist assets we already know about in $toSchema, use the existing filter otherwise |
| 925 | - $config->setSchemaAssetsFilter(static function ($asset) use ($previousFilter, $toSchema) : bool { |
|
| 925 | + $config->setSchemaAssetsFilter(static function($asset) use ($previousFilter, $toSchema) : bool { |
|
| 926 | 926 | $assetName = $asset instanceof AbstractAsset ? $asset->getName() : $asset; |
| 927 | 927 | |
| 928 | 928 | return $toSchema->hasTable($assetName) || $toSchema->hasSequence($assetName) || $previousFilter($asset); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | private function filterCreateTable(array $sqls, string $tableName) : array |
| 40 | 40 | { |
| 41 | - return array_filter($sqls, static function (string $sql) use ($tableName) : bool { |
|
| 41 | + return array_filter($sqls, static function(string $sql) use ($tableName) : bool { |
|
| 42 | 42 | return strpos($sql, sprintf('CREATE TABLE %s (', $tableName)) === 0; |
| 43 | 43 | }); |
| 44 | 44 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | $this->_em->getConnection()->exec(current($sqls)); |
| 56 | 56 | |
| 57 | - $sqls = array_filter($tool->getUpdateSchemaSql($classes), static function (string $sql) : bool { |
|
| 57 | + $sqls = array_filter($tool->getUpdateSchemaSql($classes), static function(string $sql) : bool { |
|
| 58 | 58 | return strpos($sql, ' gh7875_my_entity ') !== false; |
| 59 | 59 | }); |
| 60 | 60 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | ['/^(?!my_enti)/', null], |
| 78 | 78 | [ |
| 79 | 79 | null, |
| 80 | - static function ($assetName) : bool { |
|
| 80 | + static function($assetName) : bool { |
|
| 81 | 81 | return $assetName !== 'gh7875_my_entity'; |
| 82 | 82 | }, |
| 83 | 83 | ], |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | $previousFilter = $config->getSchemaAssetsFilter(); |
| 107 | 107 | |
| 108 | 108 | $sqls = $tool->getUpdateSchemaSql($classes); |
| 109 | - $sqls = array_filter($sqls, static function (string $sql) : bool { |
|
| 109 | + $sqls = array_filter($sqls, static function(string $sql) : bool { |
|
| 110 | 110 | return strpos($sql, ' gh7875_my_entity ') !== false; |
| 111 | 111 | }); |
| 112 | 112 | |
@@ -92,10 +92,10 @@ discard block |
||
| 92 | 92 | // It's a joined result |
| 93 | 93 | |
| 94 | 94 | $parent = $this->rsm->parentAliasMap[$dqlAlias]; |
| 95 | - $path = $parent . '.' . $dqlAlias; |
|
| 95 | + $path = $parent.'.'.$dqlAlias; |
|
| 96 | 96 | |
| 97 | 97 | // missing parent data, skipping as RIGHT JOIN hydration is not supported. |
| 98 | - if (! isset($nonemptyComponents[$parent])) { |
|
| 98 | + if ( ! isset($nonemptyComponents[$parent])) { |
|
| 99 | 99 | continue; |
| 100 | 100 | } |
| 101 | 101 | |
@@ -104,9 +104,9 @@ discard block |
||
| 104 | 104 | if ($this->rsm->isMixed && isset($this->rootAliases[$parent])) { |
| 105 | 105 | $first = reset($this->resultPointers); |
| 106 | 106 | // TODO: Exception if $key === null ? |
| 107 | - $baseElement =& $this->resultPointers[$parent][key($first)]; |
|
| 107 | + $baseElement = & $this->resultPointers[$parent][key($first)]; |
|
| 108 | 108 | } elseif (isset($this->resultPointers[$parent])) { |
| 109 | - $baseElement =& $this->resultPointers[$parent]; |
|
| 109 | + $baseElement = & $this->resultPointers[$parent]; |
|
| 110 | 110 | } else { |
| 111 | 111 | unset($this->resultPointers[$dqlAlias]); // Ticket #1228 |
| 112 | 112 | |
@@ -118,10 +118,10 @@ discard block |
||
| 118 | 118 | $relation = $parentClass->getProperty($relationAlias); |
| 119 | 119 | |
| 120 | 120 | // Check the type of the relation (many or single-valued) |
| 121 | - if (! $relation instanceof ToOneAssociationMetadata) { |
|
| 121 | + if ( ! $relation instanceof ToOneAssociationMetadata) { |
|
| 122 | 122 | $oneToOne = false; |
| 123 | 123 | |
| 124 | - if (! isset($baseElement[$relationAlias])) { |
|
| 124 | + if ( ! isset($baseElement[$relationAlias])) { |
|
| 125 | 125 | $baseElement[$relationAlias] = []; |
| 126 | 126 | } |
| 127 | 127 | |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | $index = $indexExists ? $this->identifierMap[$path][$id[$parent]][$id[$dqlAlias]] : false; |
| 131 | 131 | $indexIsValid = $index !== false ? isset($baseElement[$relationAlias][$index]) : false; |
| 132 | 132 | |
| 133 | - if (! $indexExists || ! $indexIsValid) { |
|
| 133 | + if ( ! $indexExists || ! $indexIsValid) { |
|
| 134 | 134 | $element = $data; |
| 135 | 135 | |
| 136 | 136 | if (isset($this->rsm->indexByMap[$dqlAlias])) { |
@@ -151,12 +151,12 @@ discard block |
||
| 151 | 151 | ( ! isset($baseElement[$relationAlias])) |
| 152 | 152 | ) { |
| 153 | 153 | $baseElement[$relationAlias] = null; |
| 154 | - } elseif (! isset($baseElement[$relationAlias])) { |
|
| 154 | + } elseif ( ! isset($baseElement[$relationAlias])) { |
|
| 155 | 155 | $baseElement[$relationAlias] = $data; |
| 156 | 156 | } |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - $coll =& $baseElement[$relationAlias]; |
|
| 159 | + $coll = & $baseElement[$relationAlias]; |
|
| 160 | 160 | |
| 161 | 161 | if (is_array($coll)) { |
| 162 | 162 | $this->updateResultPointer($coll, $index, $dqlAlias, $oneToOne); |
@@ -168,7 +168,7 @@ discard block |
||
| 168 | 168 | $entityKey = $this->rsm->entityMappings[$dqlAlias] ?: 0; |
| 169 | 169 | |
| 170 | 170 | // if this row has a NULL value for the root result id then make it a null result. |
| 171 | - if (! isset($nonemptyComponents[$dqlAlias])) { |
|
| 171 | + if ( ! isset($nonemptyComponents[$dqlAlias])) { |
|
| 172 | 172 | $result[] = $this->rsm->isMixed |
| 173 | 173 | ? [$entityKey => null] |
| 174 | 174 | : null; |
@@ -205,13 +205,13 @@ discard block |
||
| 205 | 205 | } |
| 206 | 206 | } |
| 207 | 207 | |
| 208 | - if (! isset($resultKey)) { |
|
| 208 | + if ( ! isset($resultKey)) { |
|
| 209 | 209 | $this->resultCounter++; |
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | // Append scalar values to mixed result sets |
| 213 | 213 | if (isset($rowData['scalars'])) { |
| 214 | - if (! isset($resultKey)) { |
|
| 214 | + if ( ! isset($resultKey)) { |
|
| 215 | 215 | // this only ever happens when no object is fetched (scalar result only) |
| 216 | 216 | $resultKey = isset($this->rsm->indexByMap['scalars']) |
| 217 | 217 | ? $row[$this->rsm->indexByMap['scalars']] |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | |
| 226 | 226 | // Append new object to mixed result sets |
| 227 | 227 | if (isset($rowData['newObjects'])) { |
| 228 | - if (! isset($resultKey)) { |
|
| 228 | + if ( ! isset($resultKey)) { |
|
| 229 | 229 | $resultKey = $this->resultCounter - 1; |
| 230 | 230 | } |
| 231 | 231 | |
@@ -267,23 +267,23 @@ discard block |
||
| 267 | 267 | } |
| 268 | 268 | |
| 269 | 269 | if ($oneToOne) { |
| 270 | - $this->resultPointers[$dqlAlias] =& $coll; |
|
| 270 | + $this->resultPointers[$dqlAlias] = & $coll; |
|
| 271 | 271 | |
| 272 | 272 | return; |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | 275 | if ($index !== false) { |
| 276 | - $this->resultPointers[$dqlAlias] =& $coll[$index]; |
|
| 276 | + $this->resultPointers[$dqlAlias] = & $coll[$index]; |
|
| 277 | 277 | |
| 278 | 278 | return; |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | - if (! $coll) { |
|
| 281 | + if ( ! $coll) { |
|
| 282 | 282 | return; |
| 283 | 283 | } |
| 284 | 284 | |
| 285 | 285 | end($coll); |
| 286 | - $this->resultPointers[$dqlAlias] =& $coll[key($coll)]; |
|
| 286 | + $this->resultPointers[$dqlAlias] = & $coll[key($coll)]; |
|
| 287 | 287 | |
| 288 | 288 | return; |
| 289 | 289 | } |