Failed Conditions
Pull Request — 2.6 (#7875)
by
unknown
07:28
created
lib/Doctrine/ORM/Mapping/UnderscoreNamingStrategy.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
      */
113 113
     public function referenceColumnName()
114 114
     {
115
-        return $this->case === CASE_UPPER ?  'ID' : 'id';
115
+        return $this->case === CASE_UPPER ? 'ID' : 'id';
116 116
     }
117 117
 
118 118
     /**
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     public function joinColumnName($propertyName, $className = null)
122 122
     {
123
-        return $this->underscore($propertyName, self::PATTERN_FOR_PROPERTIES) . '_' . $this->referenceColumnName();
123
+        return $this->underscore($propertyName, self::PATTERN_FOR_PROPERTIES).'_'.$this->referenceColumnName();
124 124
     }
125 125
 
126 126
     /**
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      */
129 129
     public function joinTableName($sourceEntity, $targetEntity, $propertyName = null)
130 130
     {
131
-        return $this->classToTableName($sourceEntity) . '_' . $this->classToTableName($targetEntity);
131
+        return $this->classToTableName($sourceEntity).'_'.$this->classToTableName($targetEntity);
132 132
     }
133 133
 
134 134
     /**
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      */
137 137
     public function joinKeyColumnName($entityName, $referencedColumnName = null)
138 138
     {
139
-        return $this->classToTableName($entityName) . '_' .
139
+        return $this->classToTableName($entityName).'_'.
140 140
                 ($referencedColumnName ?: $this->referenceColumnName());
141 141
     }
142 142
 
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Tools/SchemaTool.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
                             $targetEntity = current(
229 229
                                 array_filter(
230 230
                                     $classes,
231
-                                    function (ClassMetadata $class) use ($idMapping) : bool {
231
+                                    function(ClassMetadata $class) use ($idMapping) : bool {
232 232
                                         return $class->name === $idMapping['targetEntity'];
233 233
                                     }
234 234
                                 )
@@ -648,8 +648,8 @@  discard block
 block discarded – undo
648 648
 
649 649
             if ( ! $definingClass) {
650 650
                 throw new \Doctrine\ORM\ORMException(
651
-                    'Column name `' . $joinColumn['referencedColumnName'] . '` referenced for relation from '
652
-                    . $mapping['sourceEntity'] . ' towards ' . $mapping['targetEntity'] . ' does not exist.'
651
+                    'Column name `'.$joinColumn['referencedColumnName'].'` referenced for relation from '
652
+                    . $mapping['sourceEntity'].' towards '.$mapping['targetEntity'].' does not exist.'
653 653
                 );
654 654
             }
655 655
 
@@ -713,7 +713,7 @@  discard block
 block discarded – undo
713 713
 
714 714
         $compositeName = $theJoinTable->getName().'.'.implode('', $localColumns);
715 715
 
716
-        if (! $this->platform->supportsForeignKeyConstraints()) {
716
+        if ( ! $this->platform->supportsForeignKeyConstraints()) {
717 717
             return;
718 718
         }
719 719
 
@@ -749,7 +749,7 @@  discard block
 block discarded – undo
749 749
      */
750 750
     private function gatherColumnOptions(array $mapping) : array
751 751
     {
752
-        if (! isset($mapping['options'])) {
752
+        if ( ! isset($mapping['options'])) {
753 753
             return [];
754 754
         }
755 755
 
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
                 if ($table->hasPrimaryKey()) {
856 856
                     $columns = $table->getPrimaryKey()->getColumns();
857 857
                     if (count($columns) == 1) {
858
-                        $checkSequence = $table->getName() . '_' . $columns[0] . '_seq';
858
+                        $checkSequence = $table->getName().'_'.$columns[0].'_seq';
859 859
                         if ($fullSchema->hasSequence($checkSequence)) {
860 860
                             $visitor->acceptSequence($fullSchema->getSequence($checkSequence));
861 861
                         }
@@ -921,7 +921,7 @@  discard block
 block discarded – undo
921 921
 
922 922
             if ($filter !== null) {
923 923
                 // whitelist assets we already know about in $toSchema, use the existing filter otherwise
924
-                $config->setSchemaAssetsFilter(static function ($asset) use ($filter, $toSchema) : bool {
924
+                $config->setSchemaAssetsFilter(static function($asset) use ($filter, $toSchema) : bool {
925 925
                     $assetName = $asset instanceof AbstractAsset ? $asset->getName() : $asset;
926 926
 
927 927
                     return $toSchema->hasTable($assetName) || $toSchema->hasSequence($assetName) || $filter($asset);
Please login to merge, or discard this patch.