Failed Conditions
Pull Request — master (#6392)
by Alessandro
16:45
created
tests/Doctrine/Tests/ORM/Mapping/AbstractMappingDriverTest.php 3 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-     * @param \Doctrine\ORM\EntityManager $entityClassName
37 36
      * @return \Doctrine\ORM\Mapping\ClassMetadataFactory
38 37
      */
39 38
     protected function createClassMetadataFactory(EntityManager $em = null)
Please login to merge, or discard this patch.
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
         $this->assertEquals($guestGroups['isCascadeMerge'], $adminGroups['isCascadeMerge']);
740 740
         $this->assertEquals($guestGroups['isCascadeDetach'], $adminGroups['isCascadeDetach']);
741 741
 
742
-         // assert not override attributes
742
+            // assert not override attributes
743 743
         $this->assertEquals('ddc964_users_groups', $guestGroups['joinTable']['name']);
744 744
         $this->assertEquals('user_id', $guestGroups['joinTable']['joinColumns'][0]['name']);
745 745
         $this->assertEquals('group_id', $guestGroups['joinTable']['inverseJoinColumns'][0]['name']);
@@ -1166,8 +1166,8 @@  discard block
 block discarded – undo
1166 1166
         $metadata->setInheritanceType(ClassMetadataInfo::INHERITANCE_TYPE_NONE);
1167 1167
         $metadata->setPrimaryTable(
1168 1168
             [
1169
-           'name' => 'cms_users',
1170
-           'options' => ['foo' => 'bar', 'baz' => ['key' => 'val']],
1169
+            'name' => 'cms_users',
1170
+            'options' => ['foo' => 'bar', 'baz' => ['key' => 'val']],
1171 1171
             ]
1172 1172
         );
1173 1173
         $metadata->setChangeTrackingPolicy(ClassMetadataInfo::CHANGETRACKING_DEFERRED_IMPLICIT);
@@ -1176,30 +1176,30 @@  discard block
 block discarded – undo
1176 1176
         $metadata->addLifecycleCallback('doStuffOnPostPersist', 'postPersist');
1177 1177
         $metadata->mapField(
1178 1178
             [
1179
-           'id' => true,
1180
-           'fieldName' => 'id',
1181
-           'type' => 'integer',
1182
-           'columnName' => 'id',
1183
-           'options' => ['foo' => 'bar', 'unsigned' => false],
1179
+            'id' => true,
1180
+            'fieldName' => 'id',
1181
+            'type' => 'integer',
1182
+            'columnName' => 'id',
1183
+            'options' => ['foo' => 'bar', 'unsigned' => false],
1184 1184
             ]
1185 1185
         );
1186 1186
         $metadata->mapField(
1187 1187
             [
1188
-           'fieldName' => 'name',
1189
-           'type' => 'string',
1190
-           'length' => 50,
1191
-           'unique' => true,
1192
-           'nullable' => true,
1193
-           'columnName' => 'name',
1194
-           'options' => ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false],
1188
+            'fieldName' => 'name',
1189
+            'type' => 'string',
1190
+            'length' => 50,
1191
+            'unique' => true,
1192
+            'nullable' => true,
1193
+            'columnName' => 'name',
1194
+            'options' => ['foo' => 'bar', 'baz' => ['key' => 'val'], 'fixed' => false],
1195 1195
             ]
1196 1196
         );
1197 1197
         $metadata->mapField(
1198 1198
             [
1199
-           'fieldName' => 'email',
1200
-           'type' => 'string',
1201
-           'columnName' => 'user_email',
1202
-           'columnDefinition' => 'CHAR(32) NOT NULL',
1199
+            'fieldName' => 'email',
1200
+            'type' => 'string',
1201
+            'columnName' => 'user_email',
1202
+            'columnDefinition' => 'CHAR(32) NOT NULL',
1203 1203
             ]
1204 1204
         );
1205 1205
         $mapping = ['fieldName' => 'version', 'type' => 'integer'];
@@ -1208,60 +1208,60 @@  discard block
 block discarded – undo
1208 1208
         $metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_AUTO);
1209 1209
         $metadata->mapOneToOne(
1210 1210
             [
1211
-           'fieldName' => 'address',
1212
-           'targetEntity' => Address::class,
1213
-           'cascade' =>
1214
-           [
1215
-           0 => 'remove',
1216
-           ],
1217
-           'mappedBy' => NULL,
1218
-           'inversedBy' => 'user',
1219
-           'joinColumns' =>
1220
-           [
1221
-           0 =>
1222
-           [
1211
+            'fieldName' => 'address',
1212
+            'targetEntity' => Address::class,
1213
+            'cascade' =>
1214
+            [
1215
+            0 => 'remove',
1216
+            ],
1217
+            'mappedBy' => NULL,
1218
+            'inversedBy' => 'user',
1219
+            'joinColumns' =>
1220
+            [
1221
+            0 =>
1222
+            [
1223 1223
             'name' => 'address_id',
1224 1224
             'referencedColumnName' => 'id',
1225 1225
             'onDelete' => 'CASCADE',
1226
-           ],
1227
-           ],
1228
-           'orphanRemoval' => false,
1226
+            ],
1227
+            ],
1228
+            'orphanRemoval' => false,
1229 1229
             ]
1230 1230
         );
1231 1231
         $metadata->mapOneToMany(
1232 1232
             [
1233
-           'fieldName' => 'phonenumbers',
1234
-           'targetEntity' => Phonenumber::class,
1235
-           'cascade' =>
1236
-           [
1237
-           1 => 'persist',
1238
-           ],
1239
-           'mappedBy' => 'user',
1240
-           'orphanRemoval' => true,
1241
-           'orderBy' =>
1242
-           [
1243
-           'number' => 'ASC',
1244
-           ],
1233
+            'fieldName' => 'phonenumbers',
1234
+            'targetEntity' => Phonenumber::class,
1235
+            'cascade' =>
1236
+            [
1237
+            1 => 'persist',
1238
+            ],
1239
+            'mappedBy' => 'user',
1240
+            'orphanRemoval' => true,
1241
+            'orderBy' =>
1242
+            [
1243
+            'number' => 'ASC',
1244
+            ],
1245 1245
             ]
1246 1246
         );
1247 1247
         $metadata->mapManyToMany(
1248 1248
             [
1249
-           'fieldName' => 'groups',
1250
-           'targetEntity' => Group::class,
1251
-           'cascade' =>
1252
-           [
1253
-           0 => 'remove',
1254
-           1 => 'persist',
1255
-           2 => 'refresh',
1256
-           3 => 'merge',
1257
-           4 => 'detach',
1258
-           ],
1259
-           'mappedBy' => NULL,
1260
-           'joinTable' =>
1261
-           [
1262
-           'name' => 'cms_users_groups',
1263
-           'joinColumns' =>
1264
-           [
1249
+            'fieldName' => 'groups',
1250
+            'targetEntity' => Group::class,
1251
+            'cascade' =>
1252
+            [
1253
+            0 => 'remove',
1254
+            1 => 'persist',
1255
+            2 => 'refresh',
1256
+            3 => 'merge',
1257
+            4 => 'detach',
1258
+            ],
1259
+            'mappedBy' => NULL,
1260
+            'joinTable' =>
1261
+            [
1262
+            'name' => 'cms_users_groups',
1263
+            'joinColumns' =>
1264
+            [
1265 1265
             0 =>
1266 1266
             [
1267 1267
             'name' => 'user_id',
@@ -1269,18 +1269,18 @@  discard block
 block discarded – undo
1269 1269
             'unique' => false,
1270 1270
             'nullable' => false,
1271 1271
             ],
1272
-           ],
1273
-           'inverseJoinColumns' =>
1274
-           [
1272
+            ],
1273
+            'inverseJoinColumns' =>
1274
+            [
1275 1275
             0 =>
1276 1276
             [
1277 1277
             'name' => 'group_id',
1278 1278
             'referencedColumnName' => 'id',
1279 1279
             'columnDefinition' => 'INT NULL',
1280 1280
             ],
1281
-           ],
1282
-           ],
1283
-           'orderBy' => NULL,
1281
+            ],
1282
+            ],
1283
+            'orderBy' => NULL,
1284 1284
             ]
1285 1285
         );
1286 1286
         $metadata->table['uniqueConstraints'] = [
@@ -1391,9 +1391,9 @@  discard block
 block discarded – undo
1391 1391
     {
1392 1392
         $metadata->mapField(
1393 1393
             [
1394
-           'id'                 => true,
1395
-           'fieldName'          => 'id',
1396
-           'columnDefinition'   => 'INT unsigned NOT NULL',
1394
+            'id'                 => true,
1395
+            'fieldName'          => 'id',
1396
+            'columnDefinition'   => 'INT unsigned NOT NULL',
1397 1397
             ]
1398 1398
         );
1399 1399
 
@@ -1422,16 +1422,16 @@  discard block
 block discarded – undo
1422 1422
      * @Column(type="integer")
1423 1423
      * @GeneratedValue(strategy="NONE")
1424 1424
      **/
1425
-   public $id;
1425
+    public $id;
1426 1426
 
1427
-   public static function loadMetadata(ClassMetadataInfo $metadata)
1427
+    public static function loadMetadata(ClassMetadataInfo $metadata)
1428 1428
     {
1429
-         $metadata->mapField(
1430
-             [
1431
-           'id'                 => true,
1432
-           'fieldName'          => 'id',
1433
-             ]
1434
-         );
1429
+            $metadata->mapField(
1430
+                [
1431
+            'id'                 => true,
1432
+            'fieldName'          => 'id',
1433
+                ]
1434
+            );
1435 1435
 
1436 1436
         $metadata->setDiscriminatorColumn(
1437 1437
             [
Please login to merge, or discard this patch.
Spacing   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -605,13 +605,13 @@  discard block
 block discarded – undo
605 605
 
606 606
         $findByIdQuery = $class->getNamedNativeQuery('find-by-id');
607 607
         $this->assertEquals('find-by-id', $findByIdQuery['name']);
608
-        $this->assertEquals(CmsAddress::class,$findByIdQuery['resultClass']);
609
-        $this->assertEquals('SELECT * FROM cms_addresses WHERE id = ?',  $findByIdQuery['query']);
608
+        $this->assertEquals(CmsAddress::class, $findByIdQuery['resultClass']);
609
+        $this->assertEquals('SELECT * FROM cms_addresses WHERE id = ?', $findByIdQuery['query']);
610 610
 
611 611
         $countQuery = $class->getNamedNativeQuery('count');
612 612
         $this->assertEquals('count', $countQuery['name']);
613 613
         $this->assertEquals('mapping-count', $countQuery['resultSetMapping']);
614
-        $this->assertEquals('SELECT COUNT(*) AS count FROM cms_addresses',  $countQuery['query']);
614
+        $this->assertEquals('SELECT COUNT(*) AS count FROM cms_addresses', $countQuery['query']);
615 615
 
616 616
         // result set mapping
617 617
         $this->assertCount(3, $class->sqlResultSetMappings);
@@ -622,9 +622,9 @@  discard block
 block discarded – undo
622 622
         $findAllMapping = $class->getSqlResultSetMapping('mapping-find-all');
623 623
         $this->assertEquals('mapping-find-all', $findAllMapping['name']);
624 624
         $this->assertEquals(CmsAddress::class, $findAllMapping['entities'][0]['entityClass']);
625
-        $this->assertEquals(['name'=>'id','column'=>'id'], $findAllMapping['entities'][0]['fields'][0]);
626
-        $this->assertEquals(['name'=>'city','column'=>'city'], $findAllMapping['entities'][0]['fields'][1]);
627
-        $this->assertEquals(['name'=>'country','column'=>'country'], $findAllMapping['entities'][0]['fields'][2]);
625
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $findAllMapping['entities'][0]['fields'][0]);
626
+        $this->assertEquals(['name'=>'city', 'column'=>'city'], $findAllMapping['entities'][0]['fields'][1]);
627
+        $this->assertEquals(['name'=>'country', 'column'=>'country'], $findAllMapping['entities'][0]['fields'][2]);
628 628
 
629 629
         $withoutFieldsMapping = $class->getSqlResultSetMapping('mapping-without-fields');
630 630
         $this->assertEquals('mapping-without-fields', $withoutFieldsMapping['name']);
@@ -650,62 +650,62 @@  discard block
 block discarded – undo
650 650
         $this->assertCount(4, $userMetadata->getSqlResultSetMappings());
651 651
 
652 652
         $mapping = $userMetadata->getSqlResultSetMapping('mappingJoinedAddress');
653
-        $this->assertEquals([],$mapping['columns']);
653
+        $this->assertEquals([], $mapping['columns']);
654 654
         $this->assertEquals('mappingJoinedAddress', $mapping['name']);
655 655
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
656
-        $this->assertEquals(['name'=>'id','column'=>'id'],                     $mapping['entities'][0]['fields'][0]);
657
-        $this->assertEquals(['name'=>'name','column'=>'name'],                 $mapping['entities'][0]['fields'][1]);
658
-        $this->assertEquals(['name'=>'status','column'=>'status'],             $mapping['entities'][0]['fields'][2]);
659
-        $this->assertEquals(['name'=>'address.zip','column'=>'zip'],           $mapping['entities'][0]['fields'][3]);
660
-        $this->assertEquals(['name'=>'address.city','column'=>'city'],         $mapping['entities'][0]['fields'][4]);
661
-        $this->assertEquals(['name'=>'address.country','column'=>'country'],   $mapping['entities'][0]['fields'][5]);
662
-        $this->assertEquals(['name'=>'address.id','column'=>'a_id'],           $mapping['entities'][0]['fields'][6]);
663
-        $this->assertEquals($userMetadata->name,                                    $mapping['entities'][0]['entityClass']);
656
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
657
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
658
+        $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]);
659
+        $this->assertEquals(['name'=>'address.zip', 'column'=>'zip'], $mapping['entities'][0]['fields'][3]);
660
+        $this->assertEquals(['name'=>'address.city', 'column'=>'city'], $mapping['entities'][0]['fields'][4]);
661
+        $this->assertEquals(['name'=>'address.country', 'column'=>'country'], $mapping['entities'][0]['fields'][5]);
662
+        $this->assertEquals(['name'=>'address.id', 'column'=>'a_id'], $mapping['entities'][0]['fields'][6]);
663
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
664 664
 
665 665
 
666 666
         $mapping = $userMetadata->getSqlResultSetMapping('mappingJoinedPhonenumber');
667
-        $this->assertEquals([],$mapping['columns']);
667
+        $this->assertEquals([], $mapping['columns']);
668 668
         $this->assertEquals('mappingJoinedPhonenumber', $mapping['name']);
669 669
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
670
-        $this->assertEquals(['name'=>'id','column'=>'id'],                             $mapping['entities'][0]['fields'][0]);
671
-        $this->assertEquals(['name'=>'name','column'=>'name'],                         $mapping['entities'][0]['fields'][1]);
672
-        $this->assertEquals(['name'=>'status','column'=>'status'],                     $mapping['entities'][0]['fields'][2]);
673
-        $this->assertEquals(['name'=>'phonenumbers.phonenumber','column'=>'number'],   $mapping['entities'][0]['fields'][3]);
674
-        $this->assertEquals($userMetadata->name,                                            $mapping['entities'][0]['entityClass']);
670
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
671
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
672
+        $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]);
673
+        $this->assertEquals(['name'=>'phonenumbers.phonenumber', 'column'=>'number'], $mapping['entities'][0]['fields'][3]);
674
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
675 675
 
676 676
         $mapping = $userMetadata->getSqlResultSetMapping('mappingUserPhonenumberCount');
677
-        $this->assertEquals(['name'=>'numphones'],$mapping['columns'][0]);
677
+        $this->assertEquals(['name'=>'numphones'], $mapping['columns'][0]);
678 678
         $this->assertEquals('mappingUserPhonenumberCount', $mapping['name']);
679 679
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
680
-        $this->assertEquals(['name'=>'id','column'=>'id'],         $mapping['entities'][0]['fields'][0]);
681
-        $this->assertEquals(['name'=>'name','column'=>'name'],     $mapping['entities'][0]['fields'][1]);
682
-        $this->assertEquals(['name'=>'status','column'=>'status'], $mapping['entities'][0]['fields'][2]);
683
-        $this->assertEquals($userMetadata->name,                        $mapping['entities'][0]['entityClass']);
680
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
681
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
682
+        $this->assertEquals(['name'=>'status', 'column'=>'status'], $mapping['entities'][0]['fields'][2]);
683
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
684 684
 
685 685
         $mapping = $userMetadata->getSqlResultSetMapping('mappingMultipleJoinsEntityResults');
686
-        $this->assertEquals(['name'=>'numphones'],$mapping['columns'][0]);
686
+        $this->assertEquals(['name'=>'numphones'], $mapping['columns'][0]);
687 687
         $this->assertEquals('mappingMultipleJoinsEntityResults', $mapping['name']);
688 688
         $this->assertNull($mapping['entities'][0]['discriminatorColumn']);
689
-        $this->assertEquals(['name'=>'id','column'=>'u_id'],           $mapping['entities'][0]['fields'][0]);
690
-        $this->assertEquals(['name'=>'name','column'=>'u_name'],       $mapping['entities'][0]['fields'][1]);
691
-        $this->assertEquals(['name'=>'status','column'=>'u_status'],   $mapping['entities'][0]['fields'][2]);
692
-        $this->assertEquals($userMetadata->name,                            $mapping['entities'][0]['entityClass']);
689
+        $this->assertEquals(['name'=>'id', 'column'=>'u_id'], $mapping['entities'][0]['fields'][0]);
690
+        $this->assertEquals(['name'=>'name', 'column'=>'u_name'], $mapping['entities'][0]['fields'][1]);
691
+        $this->assertEquals(['name'=>'status', 'column'=>'u_status'], $mapping['entities'][0]['fields'][2]);
692
+        $this->assertEquals($userMetadata->name, $mapping['entities'][0]['entityClass']);
693 693
         $this->assertNull($mapping['entities'][1]['discriminatorColumn']);
694
-        $this->assertEquals(['name'=>'id','column'=>'a_id'],           $mapping['entities'][1]['fields'][0]);
695
-        $this->assertEquals(['name'=>'zip','column'=>'a_zip'],         $mapping['entities'][1]['fields'][1]);
696
-        $this->assertEquals(['name'=>'country','column'=>'a_country'], $mapping['entities'][1]['fields'][2]);
697
-        $this->assertEquals(CmsAddress::class,         $mapping['entities'][1]['entityClass']);
694
+        $this->assertEquals(['name'=>'id', 'column'=>'a_id'], $mapping['entities'][1]['fields'][0]);
695
+        $this->assertEquals(['name'=>'zip', 'column'=>'a_zip'], $mapping['entities'][1]['fields'][1]);
696
+        $this->assertEquals(['name'=>'country', 'column'=>'a_country'], $mapping['entities'][1]['fields'][2]);
697
+        $this->assertEquals(CmsAddress::class, $mapping['entities'][1]['entityClass']);
698 698
 
699 699
         //person asserts
700 700
         $this->assertCount(1, $personMetadata->getSqlResultSetMappings());
701 701
 
702 702
         $mapping = $personMetadata->getSqlResultSetMapping('mappingFetchAll');
703
-        $this->assertEquals([],$mapping['columns']);
703
+        $this->assertEquals([], $mapping['columns']);
704 704
         $this->assertEquals('mappingFetchAll', $mapping['name']);
705
-        $this->assertEquals('discriminator',                            $mapping['entities'][0]['discriminatorColumn']);
706
-        $this->assertEquals(['name'=>'id','column'=>'id'],         $mapping['entities'][0]['fields'][0]);
707
-        $this->assertEquals(['name'=>'name','column'=>'name'],     $mapping['entities'][0]['fields'][1]);
708
-        $this->assertEquals($personMetadata->name,                      $mapping['entities'][0]['entityClass']);
705
+        $this->assertEquals('discriminator', $mapping['entities'][0]['discriminatorColumn']);
706
+        $this->assertEquals(['name'=>'id', 'column'=>'id'], $mapping['entities'][0]['fields'][0]);
707
+        $this->assertEquals(['name'=>'name', 'column'=>'name'], $mapping['entities'][0]['fields'][1]);
708
+        $this->assertEquals($personMetadata->name, $mapping['entities'][0]['entityClass']);
709 709
     }
710 710
 
711 711
     /*
@@ -746,7 +746,7 @@  discard block
 block discarded – undo
746 746
 
747 747
         $this->assertEquals(['user_id'=>'id'], $guestGroups['relationToSourceKeyColumns']);
748 748
         $this->assertEquals(['group_id'=>'id'], $guestGroups['relationToTargetKeyColumns']);
749
-        $this->assertEquals(['user_id','group_id'], $guestGroups['joinTableColumns']);
749
+        $this->assertEquals(['user_id', 'group_id'], $guestGroups['joinTableColumns']);
750 750
 
751 751
 
752 752
         $this->assertEquals('ddc964_users_admingroups', $adminGroups['joinTable']['name']);
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
 
756 756
         $this->assertEquals(['adminuser_id'=>'id'], $adminGroups['relationToSourceKeyColumns']);
757 757
         $this->assertEquals(['admingroup_id'=>'id'], $adminGroups['relationToTargetKeyColumns']);
758
-        $this->assertEquals(['adminuser_id','admingroup_id'], $adminGroups['joinTableColumns']);
758
+        $this->assertEquals(['adminuser_id', 'admingroup_id'], $adminGroups['joinTableColumns']);
759 759
 
760 760
 
761 761
         // assert address association mappings
@@ -833,8 +833,8 @@  discard block
 block discarded – undo
833 833
         $this->assertTrue($adminMetadata->fieldMappings['id']['id']);
834 834
         $this->assertEquals('id', $adminMetadata->fieldMappings['id']['fieldName']);
835 835
         $this->assertEquals('user_id', $adminMetadata->fieldMappings['id']['columnName']);
836
-        $this->assertEquals(['user_id'=>'id','user_name'=>'name'], $adminMetadata->fieldNames);
837
-        $this->assertEquals(['id'=>'user_id','name'=>'user_name'], $adminMetadata->columnNames);
836
+        $this->assertEquals(['user_id'=>'id', 'user_name'=>'name'], $adminMetadata->fieldNames);
837
+        $this->assertEquals(['id'=>'user_id', 'name'=>'user_name'], $adminMetadata->columnNames);
838 838
         $this->assertEquals(150, $adminMetadata->fieldMappings['id']['length']);
839 839
 
840 840
 
@@ -848,8 +848,8 @@  discard block
 block discarded – undo
848 848
         $this->assertTrue($guestMetadata->fieldMappings['id']['id']);
849 849
         $this->assertEquals('guest_id', $guestMetadata->fieldMappings['id']['columnName']);
850 850
         $this->assertEquals('id', $guestMetadata->fieldMappings['id']['fieldName']);
851
-        $this->assertEquals(['guest_id'=>'id','guest_name'=>'name'], $guestMetadata->fieldNames);
852
-        $this->assertEquals(['id'=>'guest_id','name'=>'guest_name'], $guestMetadata->columnNames);
851
+        $this->assertEquals(['guest_id'=>'id', 'guest_name'=>'name'], $guestMetadata->fieldNames);
852
+        $this->assertEquals(['id'=>'guest_id', 'name'=>'guest_name'], $guestMetadata->columnNames);
853 853
         $this->assertEquals(140, $guestMetadata->fieldMappings['id']['length']);
854 854
 
855 855
         $this->assertEquals('name', $guestMetadata->fieldMappings['name']['fieldName']);
Please login to merge, or discard this patch.
lib/Doctrine/ORM/EntityManager.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -224,8 +224,8 @@  discard block
 block discarded – undo
224 224
      */
225 225
     public function transactional($func)
226 226
     {
227
-        if (!is_callable($func)) {
228
-            throw new \InvalidArgumentException('Expected argument of type "callable", got "' . gettype($func) . '"');
227
+        if ( ! is_callable($func)) {
228
+            throw new \InvalidArgumentException('Expected argument of type "callable", got "'.gettype($func).'"');
229 229
         }
230 230
 
231 231
         $this->conn->beginTransaction();
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
      */
754 754
     public function isOpen()
755 755
     {
756
-        return (!$this->closed);
756
+        return ( ! $this->closed);
757 757
     }
758 758
 
759 759
     /**
@@ -864,7 +864,7 @@  discard block
 block discarded – undo
864 864
                 sprintf(
865 865
                     'Invalid $connection argument of type %s given%s.',
866 866
                     is_object($connection) ? get_class($connection) : gettype($connection),
867
-                    is_object($connection) ? '' : ': "' . $connection . '"'
867
+                    is_object($connection) ? '' : ': "'.$connection.'"'
868 868
                 )
869 869
             );
870 870
         }
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Tools/EntityGeneratorTest.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1104,7 +1104,7 @@
 block discarded – undo
1104 1104
 
1105 1105
     /**
1106 1106
      * @param string $type
1107
-     * @param \ReflectionProperty $method
1107
+     * @param \ReflectionMethod $method
1108 1108
      */
1109 1109
     private function assertPhpDocParamType($type, \ReflectionMethod $method)
1110 1110
     {
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
540 540
 
541 541
         $filename = $this->_tmpDir . DIRECTORY_SEPARATOR
542
-                  . $this->_namespace . DIRECTORY_SEPARATOR . 'DDC1784Entity.php';
542
+                    . $this->_namespace . DIRECTORY_SEPARATOR . 'DDC1784Entity.php';
543 543
 
544 544
         $this->assertFileExists($filename);
545 545
         require_once $filename;
@@ -600,9 +600,9 @@  discard block
 block discarded – undo
600 600
 
601 601
     }
602 602
 
603
-     /**
604
-     * @group DDC-2172
605
-     */
603
+        /**
604
+         * @group DDC-2172
605
+         */
606 606
     public function testGetInheritanceTypeString()
607 607
     {
608 608
         $reflection = new \ReflectionClass('\Doctrine\ORM\Mapping\ClassMetadataInfo');
@@ -630,8 +630,8 @@  discard block
 block discarded – undo
630 630
     }
631 631
 
632 632
     /**
633
-    * @group DDC-2172
634
-    */
633
+     * @group DDC-2172
634
+     */
635 635
     public function testGetChangeTrackingPolicyString()
636 636
     {
637 637
         $reflection = new \ReflectionClass('\Doctrine\ORM\Mapping\ClassMetadata');
Please login to merge, or discard this patch.
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     {
28 28
         $this->_namespace = uniqid("doctrine_");
29 29
         $this->_tmpDir = \sys_get_temp_dir();
30
-        \mkdir($this->_tmpDir . \DIRECTORY_SEPARATOR . $this->_namespace);
30
+        \mkdir($this->_tmpDir.\DIRECTORY_SEPARATOR.$this->_namespace);
31 31
         $this->_generator = new EntityGenerator();
32 32
         $this->_generator->setAnnotationPrefix("");
33 33
         $this->_generator->setGenerateAnnotations(true);
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
 
40 40
     public function tearDown()
41 41
     {
42
-        $ri = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($this->_tmpDir . '/' . $this->_namespace));
42
+        $ri = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($this->_tmpDir.'/'.$this->_namespace));
43 43
         foreach ($ri AS $file) {
44 44
             /* @var $file \SplFileInfo */
45 45
             if ($file->isFile()) {
46 46
                 \unlink($file->getPathname());
47 47
             }
48 48
         }
49
-        rmdir($this->_tmpDir . '/' . $this->_namespace);
49
+        rmdir($this->_tmpDir.'/'.$this->_namespace);
50 50
     }
51 51
 
52 52
     /**
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function generateBookEntityFixture(array $embeddedClasses = [])
58 58
     {
59
-        $metadata = new ClassMetadataInfo($this->_namespace . '\EntityGeneratorBook');
59
+        $metadata = new ClassMetadataInfo($this->_namespace.'\EntityGeneratorBook');
60 60
         $metadata->namespace = $this->_namespace;
61
-        $metadata->customRepositoryClassName = $this->_namespace  . '\EntityGeneratorBookRepository';
61
+        $metadata->customRepositoryClassName = $this->_namespace.'\EntityGeneratorBookRepository';
62 62
 
63 63
         $metadata->table['name'] = 'book';
64 64
         $metadata->table['uniqueConstraints']['name_uniq'] = ['columns' => ['name']];
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
     private function generateEntityTypeFixture(array $field)
102 102
     {
103
-        $metadata = new ClassMetadataInfo($this->_namespace . '\EntityType');
103
+        $metadata = new ClassMetadataInfo($this->_namespace.'\EntityType');
104 104
         $metadata->namespace = $this->_namespace;
105 105
 
106 106
         $metadata->table['name'] = 'entity_type';
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     private function generateIsbnEmbeddableFixture(array $embeddedClasses = [])
123 123
     {
124
-        $metadata = new ClassMetadataInfo($this->_namespace . '\EntityGeneratorIsbn');
124
+        $metadata = new ClassMetadataInfo($this->_namespace.'\EntityGeneratorIsbn');
125 125
         $metadata->namespace = $this->_namespace;
126 126
         $metadata->isEmbeddedClass = true;
127 127
         $metadata->mapField(['fieldName' => 'prefix', 'type' => 'integer']);
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     private function generateTestEmbeddableFixture()
146 146
     {
147
-        $metadata = new ClassMetadataInfo($this->_namespace . '\EntityGeneratorTestEmbeddable');
147
+        $metadata = new ClassMetadataInfo($this->_namespace.'\EntityGeneratorTestEmbeddable');
148 148
         $metadata->namespace = $this->_namespace;
149 149
         $metadata->isEmbeddedClass = true;
150 150
         $metadata->mapField(['fieldName' => 'field1', 'type' => 'integer']);
@@ -187,11 +187,11 @@  discard block
 block discarded – undo
187 187
         foreach ($embeddableMetadata->embeddedClasses as $property => $embeddableClass) {
188 188
             $classMetadata->mapEmbedded(
189 189
                 [
190
-                'fieldName' => $fieldName . '.' . $property,
190
+                'fieldName' => $fieldName.'.'.$property,
191 191
                 'class' => $embeddableClass['class'],
192 192
                 'columnPrefix' => $embeddableClass['columnPrefix'],
193 193
                 'declaredField' => $embeddableClass['declaredField']
194
-                        ? $fieldName . '.' . $embeddableClass['declaredField']
194
+                        ? $fieldName.'.'.$embeddableClass['declaredField']
195 195
                         : $fieldName,
196 196
                 'originalField' => $embeddableClass['originalField'] ?: $property,
197 197
                 ]
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
     private function loadEntityClass(ClassMetadataInfo $metadata)
206 206
     {
207 207
         $className = basename(str_replace('\\', '/', $metadata->name));
208
-        $path = $this->_tmpDir . '/' . $this->_namespace . '/' . $className . '.php';
208
+        $path = $this->_tmpDir.'/'.$this->_namespace.'/'.$className.'.php';
209 209
 
210 210
         $this->assertFileExists($path);
211 211
 
@@ -232,19 +232,19 @@  discard block
 block discarded – undo
232 232
 
233 233
         $book = $this->newInstance($metadata);
234 234
         $this->assertTrue(class_exists($metadata->name), "Class does not exist.");
235
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', '__construct'), "EntityGeneratorBook::__construct() missing.");
236
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getId'), "EntityGeneratorBook::getId() missing.");
237
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'setName'), "EntityGeneratorBook::setName() missing.");
238
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getName'), "EntityGeneratorBook::getName() missing.");
239
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'setStatus'), "EntityGeneratorBook::setStatus() missing.");
240
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getStatus'), "EntityGeneratorBook::getStatus() missing.");
241
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'setAuthor'), "EntityGeneratorBook::setAuthor() missing.");
242
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getAuthor'), "EntityGeneratorBook::getAuthor() missing.");
243
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getComments'), "EntityGeneratorBook::getComments() missing.");
244
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'addComment'), "EntityGeneratorBook::addComment() missing.");
245
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'removeComment'), "EntityGeneratorBook::removeComment() missing.");
246
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'setIsbn'), "EntityGeneratorBook::setIsbn() missing.");
247
-        $this->assertTrue(method_exists($metadata->namespace . '\EntityGeneratorBook', 'getIsbn'), "EntityGeneratorBook::getIsbn() missing.");
235
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', '__construct'), "EntityGeneratorBook::__construct() missing.");
236
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'getId'), "EntityGeneratorBook::getId() missing.");
237
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'setName'), "EntityGeneratorBook::setName() missing.");
238
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'getName'), "EntityGeneratorBook::getName() missing.");
239
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'setStatus'), "EntityGeneratorBook::setStatus() missing.");
240
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'getStatus'), "EntityGeneratorBook::getStatus() missing.");
241
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'setAuthor'), "EntityGeneratorBook::setAuthor() missing.");
242
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'getAuthor'), "EntityGeneratorBook::getAuthor() missing.");
243
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'getComments'), "EntityGeneratorBook::getComments() missing.");
244
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'addComment'), "EntityGeneratorBook::addComment() missing.");
245
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'removeComment'), "EntityGeneratorBook::removeComment() missing.");
246
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'setIsbn'), "EntityGeneratorBook::setIsbn() missing.");
247
+        $this->assertTrue(method_exists($metadata->namespace.'\EntityGeneratorBook', 'getIsbn'), "EntityGeneratorBook::getIsbn() missing.");
248 248
 
249 249
         $reflClass = new \ReflectionClass($metadata->name);
250 250
 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 
298 298
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
299 299
 
300
-        $this->assertFileExists($this->_tmpDir . "/" . $this->_namespace . "/EntityGeneratorBook.php~");
300
+        $this->assertFileExists($this->_tmpDir."/".$this->_namespace."/EntityGeneratorBook.php~");
301 301
 
302 302
         $book = $this->newInstance($metadata);
303 303
         $reflClass = new \ReflectionClass($metadata->name);
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
         // Should not throw a PHP fatal error
343 343
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
344 344
 
345
-        $this->assertFileExists($this->_tmpDir . "/" . $this->_namespace . "/EntityGeneratorBook.php~");
345
+        $this->assertFileExists($this->_tmpDir."/".$this->_namespace."/EntityGeneratorBook.php~");
346 346
 
347 347
         $this->newInstance($metadata);
348 348
         $reflClass = new \ReflectionClass($metadata->name);
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
         $this->assertPhpDocReturnType('\Doctrine\Tests\ORM\Tools\EntityGeneratorAuthor|null', new \ReflectionMethod($book, 'getAuthor'));
378 378
         $this->assertPhpDocParamType('\Doctrine\Tests\ORM\Tools\EntityGeneratorAuthor|null', new \ReflectionMethod($book, 'setAuthor'));
379 379
 
380
-        $expectedClassName = '\\' . $embeddedMetadata->name;
380
+        $expectedClassName = '\\'.$embeddedMetadata->name;
381 381
         $this->assertPhpDocVarType($expectedClassName, new \ReflectionProperty($book, 'isbn'));
382 382
         $this->assertPhpDocReturnType($expectedClassName, new \ReflectionMethod($book, 'getIsbn'));
383 383
         $this->assertPhpDocParamType($expectedClassName, new \ReflectionMethod($book, 'setIsbn'));
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
      */
488 488
     public function testMappedSuperclassAnnotationGeneration()
489 489
     {
490
-        $metadata                     = new ClassMetadataInfo($this->_namespace . '\EntityGeneratorBook');
490
+        $metadata                     = new ClassMetadataInfo($this->_namespace.'\EntityGeneratorBook');
491 491
         $metadata->namespace          = $this->_namespace;
492 492
         $metadata->isMappedSuperclass = true;
493 493
 
@@ -525,7 +525,7 @@  discard block
 block discarded – undo
525 525
      */
526 526
     public function testGenerateEntityWithSequenceGenerator()
527 527
     {
528
-        $metadata               = new ClassMetadataInfo($this->_namespace . '\DDC1784Entity');
528
+        $metadata               = new ClassMetadataInfo($this->_namespace.'\DDC1784Entity');
529 529
         $metadata->namespace    = $this->_namespace;
530 530
         $metadata->mapField(['fieldName' => 'id', 'type' => 'integer', 'id' => true]);
531 531
         $metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_SEQUENCE);
@@ -538,8 +538,8 @@  discard block
 block discarded – undo
538 538
         );
539 539
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
540 540
 
541
-        $filename = $this->_tmpDir . DIRECTORY_SEPARATOR
542
-                  . $this->_namespace . DIRECTORY_SEPARATOR . 'DDC1784Entity.php';
541
+        $filename = $this->_tmpDir.DIRECTORY_SEPARATOR
542
+                  . $this->_namespace.DIRECTORY_SEPARATOR.'DDC1784Entity.php';
543 543
 
544 544
         $this->assertFileExists($filename);
545 545
         require_once $filename;
@@ -559,7 +559,7 @@  discard block
 block discarded – undo
559 559
      */
560 560
     public function testGenerateEntityWithMultipleInverseJoinColumns()
561 561
     {
562
-        $metadata               = new ClassMetadataInfo($this->_namespace . '\DDC2079Entity');
562
+        $metadata               = new ClassMetadataInfo($this->_namespace.'\DDC2079Entity');
563 563
         $metadata->namespace    = $this->_namespace;
564 564
         $metadata->mapField(['fieldName' => 'id', 'type' => 'integer', 'id' => true]);
565 565
         $metadata->setIdGeneratorType(ClassMetadataInfo::GENERATOR_TYPE_SEQUENCE);
@@ -570,20 +570,20 @@  discard block
 block discarded – undo
570 570
             'joinTable'     => [
571 571
                 'name'                  => 'unidade_centro_custo',
572 572
                 'joinColumns'           => [
573
-                    ['name' => 'idorcamento',      'referencedColumnName' => 'idorcamento'],
574
-                    ['name' => 'idunidade',        'referencedColumnName' => 'idunidade']
573
+                    ['name' => 'idorcamento', 'referencedColumnName' => 'idorcamento'],
574
+                    ['name' => 'idunidade', 'referencedColumnName' => 'idunidade']
575 575
                 ],
576 576
                 'inverseJoinColumns'    => [
577
-                    ['name' => 'idcentrocusto',    'referencedColumnName' => 'idcentrocusto'],
578
-                    ['name' => 'idpais',           'referencedColumnName' => 'idpais'],
577
+                    ['name' => 'idcentrocusto', 'referencedColumnName' => 'idcentrocusto'],
578
+                    ['name' => 'idpais', 'referencedColumnName' => 'idpais'],
579 579
                 ],
580 580
             ],
581 581
             ]
582 582
         );
583 583
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
584 584
 
585
-        $filename = $this->_tmpDir . DIRECTORY_SEPARATOR
586
-            . $this->_namespace . DIRECTORY_SEPARATOR . 'DDC2079Entity.php';
585
+        $filename = $this->_tmpDir.DIRECTORY_SEPARATOR
586
+            . $this->_namespace.DIRECTORY_SEPARATOR.'DDC2079Entity.php';
587 587
 
588 588
         $this->assertFileExists($filename);
589 589
         require_once $filename;
@@ -613,7 +613,7 @@  discard block
 block discarded – undo
613 613
         $method->setAccessible(true);
614 614
 
615 615
         foreach ($constants as $name => $value) {
616
-            if( ! preg_match($pattern, $name)) {
616
+            if ( ! preg_match($pattern, $name)) {
617 617
                 continue;
618 618
             }
619 619
 
@@ -642,7 +642,7 @@  discard block
 block discarded – undo
642 642
         $method->setAccessible(true);
643 643
 
644 644
         foreach ($constants as $name => $value) {
645
-            if( ! preg_match($pattern, $name)) {
645
+            if ( ! preg_match($pattern, $name)) {
646 646
                 continue;
647 647
             }
648 648
 
@@ -671,7 +671,7 @@  discard block
 block discarded – undo
671 671
         $method->setAccessible(true);
672 672
 
673 673
         foreach ($constants as $name => $value) {
674
-            if( ! preg_match($pattern, $name)) {
674
+            if ( ! preg_match($pattern, $name)) {
675 675
                 continue;
676 676
             }
677 677
 
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
     public function testEntityTypeAlias(array $field)
696 696
     {
697 697
         $metadata   = $this->generateEntityTypeFixture($field);
698
-        $path       = $this->_tmpDir . '/'. $this->_namespace . '/EntityType.php';
698
+        $path       = $this->_tmpDir.'/'.$this->_namespace.'/EntityType.php';
699 699
 
700 700
         $this->assertFileExists($path);
701 701
         require_once $path;
@@ -706,8 +706,8 @@  discard block
 block discarded – undo
706 706
         $type   = $field['phpType'];
707 707
         $name   = $field['fieldName'];
708 708
         $value  = $field['value'];
709
-        $getter = "get" . ucfirst($name);
710
-        $setter = "set" . ucfirst($name);
709
+        $getter = "get".ucfirst($name);
710
+        $setter = "set".ucfirst($name);
711 711
 
712 712
         $this->assertPhpDocVarType($type, $reflClass->getProperty($name));
713 713
         $this->assertPhpDocParamType($type, $reflClass->getMethod($setter));
@@ -728,13 +728,13 @@  discard block
 block discarded – undo
728 728
 
729 729
         $user = new DDC2372User();
730 730
         $metadata = $cmf->getMetadataFor(get_class($user));
731
-        $metadata->name = $this->_namespace . "\DDC2372User";
731
+        $metadata->name = $this->_namespace."\DDC2372User";
732 732
         $metadata->namespace = $this->_namespace;
733 733
 
734 734
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
735 735
 
736
-        $this->assertFileExists($this->_tmpDir . "/" . $this->_namespace . "/DDC2372User.php");
737
-        require $this->_tmpDir . "/" . $this->_namespace . "/DDC2372User.php";
736
+        $this->assertFileExists($this->_tmpDir."/".$this->_namespace."/DDC2372User.php");
737
+        require $this->_tmpDir."/".$this->_namespace."/DDC2372User.php";
738 738
 
739 739
         $reflClass = new \ReflectionClass($metadata->name);
740 740
 
@@ -754,13 +754,13 @@  discard block
 block discarded – undo
754 754
 
755 755
         $user = new DDC2372Admin();
756 756
         $metadata = $cmf->getMetadataFor(get_class($user));
757
-        $metadata->name = $this->_namespace . "\DDC2372Admin";
757
+        $metadata->name = $this->_namespace."\DDC2372Admin";
758 758
         $metadata->namespace = $this->_namespace;
759 759
 
760 760
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
761 761
 
762
-        $this->assertFileExists($this->_tmpDir . "/" . $this->_namespace . "/DDC2372Admin.php");
763
-        require $this->_tmpDir . "/" . $this->_namespace . "/DDC2372Admin.php";
762
+        $this->assertFileExists($this->_tmpDir."/".$this->_namespace."/DDC2372Admin.php");
763
+        require $this->_tmpDir."/".$this->_namespace."/DDC2372Admin.php";
764 764
 
765 765
         $reflClass = new \ReflectionClass($metadata->name);
766 766
 
@@ -780,20 +780,20 @@  discard block
 block discarded – undo
780 780
         $cmf->setEntityManager($em);
781 781
 
782 782
         $ns     = $this->_namespace;
783
-        $nsdir  = $this->_tmpDir . '/' . $ns;
783
+        $nsdir  = $this->_tmpDir.'/'.$ns;
784 784
 
785 785
         $content = str_replace(
786 786
             'namespace Doctrine\Tests\Models\DDC1590',
787
-            'namespace ' . $ns,
788
-            file_get_contents(__DIR__ . '/../../Models/DDC1590/DDC1590User.php')
787
+            'namespace '.$ns,
788
+            file_get_contents(__DIR__.'/../../Models/DDC1590/DDC1590User.php')
789 789
         );
790 790
 
791
-        $fname = $nsdir . "/DDC1590User.php";
791
+        $fname = $nsdir."/DDC1590User.php";
792 792
         file_put_contents($fname, $content);
793 793
         require $fname;
794 794
 
795 795
 
796
-        $metadata = $cmf->getMetadataFor($ns . '\DDC1590User');
796
+        $metadata = $cmf->getMetadataFor($ns.'\DDC1590User');
797 797
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
798 798
 
799 799
         // class DDC1590User extends DDC1590Entity { ... }
@@ -801,13 +801,13 @@  discard block
 block discarded – undo
801 801
 
802 802
         // class _DDC1590User extends DDC1590Entity { ... }
803 803
         $source2    = str_replace('class DDC1590User', 'class _DDC1590User', $source);
804
-        $fname2     = $nsdir . "/_DDC1590User.php";
804
+        $fname2     = $nsdir."/_DDC1590User.php";
805 805
         file_put_contents($fname2, $source2);
806 806
         require $fname2;
807 807
 
808 808
         // class __DDC1590User { ... }
809 809
         $source3    = str_replace('class DDC1590User extends DDC1590Entity', 'class __DDC1590User', $source);
810
-        $fname3     = $nsdir . "/__DDC1590User.php";
810
+        $fname3     = $nsdir."/__DDC1590User.php";
811 811
         file_put_contents($fname3, $source3);
812 812
         require $fname3;
813 813
 
@@ -961,7 +961,7 @@  discard block
 block discarded – undo
961 961
         $this->loadEntityClass($metadata);
962 962
 
963 963
         $className = basename(str_replace('\\', '/', $metadata->name));
964
-        $path = $this->_tmpDir . '/' . $this->_namespace . '/' . $className . '.php';
964
+        $path = $this->_tmpDir.'/'.$this->_namespace.'/'.$className.'.php';
965 965
         $classTest = file_get_contents($path);
966 966
 
967 967
         $this->_generator->setRegenerateEntityIfExists(true);
@@ -970,7 +970,7 @@  discard block
 block discarded – undo
970 970
         $this->_generator->writeEntityClass($metadata, $this->_tmpDir);
971 971
         $classNew = file_get_contents($path);
972 972
 
973
-        $this->assertSame($classTest,$classNew);
973
+        $this->assertSame($classTest, $classNew);
974 974
     }
975 975
 
976 976
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php 3 patches
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -667,7 +667,7 @@  discard block
 block discarded – undo
667 667
     /**
668 668
      * Gets the ReflectionProperties of the mapped class.
669 669
      *
670
-     * @return array An array of ReflectionProperty instances.
670
+     * @return \ReflectionProperty[] An array of ReflectionProperty instances.
671 671
      */
672 672
     public function getReflectionProperties()
673 673
     {
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
      *      - reflClass (ReflectionClass)
806 806
      *      - reflFields (ReflectionProperty array)
807 807
      *
808
-     * @return array The names of all the fields that should be serialized.
808
+     * @return string[] The names of all the fields that should be serialized.
809 809
      */
810 810
     public function __sleep()
811 811
     {
@@ -1825,7 +1825,7 @@  discard block
 block discarded – undo
1825 1825
      * Sets the mapped identifier/primary key fields of this class.
1826 1826
      * Mainly used by the ClassMetadataFactory to assign inherited identifiers.
1827 1827
      *
1828
-     * @param array $identifier
1828
+     * @param string[] $identifier
1829 1829
      *
1830 1830
      * @return void
1831 1831
      */
@@ -1854,7 +1854,7 @@  discard block
 block discarded – undo
1854 1854
     /**
1855 1855
      * Gets an array containing all the column names.
1856 1856
      *
1857
-     * @param array|null $fieldNames
1857
+     * @param string[] $fieldNames
1858 1858
      *
1859 1859
      * @return array
1860 1860
      */
@@ -2012,7 +2012,7 @@  discard block
 block discarded – undo
2012 2012
      *
2013 2013
      * @param string $fieldName
2014 2014
      *
2015
-     * @return \Doctrine\DBAL\Types\Type|string|null
2015
+     * @return string
2016 2016
      *
2017 2017
      * @todo 3.0 Remove this. PersisterHelper should fix it somehow
2018 2018
      */
@@ -2072,7 +2072,7 @@  discard block
 block discarded – undo
2072 2072
     /**
2073 2073
      * Sets the mapped subclasses of this class.
2074 2074
      *
2075
-     * @param array $subclasses The names of all mapped subclasses.
2075
+     * @param string[] $subclasses The names of all mapped subclasses.
2076 2076
      *
2077 2077
      * @return void
2078 2078
      */
@@ -2088,7 +2088,7 @@  discard block
 block discarded – undo
2088 2088
      * Assumes that the class names in the passed array are in the order:
2089 2089
      * directParent -> directParentParent -> directParentParentParent ... -> root.
2090 2090
      *
2091
-     * @param array $classNames
2091
+     * @param string[] $classNames
2092 2092
      *
2093 2093
      * @return void
2094 2094
      */
@@ -2625,7 +2625,7 @@  discard block
 block discarded – undo
2625 2625
      * @deprecated Deprecated since version 2.4 in favor of \Doctrine\ORM\Event\ListenersInvoker
2626 2626
      *
2627 2627
      * @param string $lifecycleEvent The lifecycle event.
2628
-     * @param object $entity         The Entity on which the event occurred.
2628
+     * @param \Doctrine\Tests\ORM\Functional\Ticket\DDC1707Child $entity         The Entity on which the event occurred.
2629 2629
      *
2630 2630
      * @return void
2631 2631
      */
Please login to merge, or discard this patch.
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
     public function getSingleIdReflectionProperty()
697 697
     {
698 698
         if ($this->isIdentifierComposite) {
699
-            throw new BadMethodCallException("Class " . $this->name . " has a composite identifier.");
699
+            throw new BadMethodCallException("Class ".$this->name." has a composite identifier.");
700 700
         }
701 701
 
702 702
         return $this->reflFields[$this->identifier[0]];
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
      */
792 792
     public function __toString()
793 793
     {
794
-        return __CLASS__ . '@' . spl_object_hash($this);
794
+        return __CLASS__.'@'.spl_object_hash($this);
795 795
     }
796 796
 
797 797
     /**
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
     public function validateAssociations()
1026 1026
     {
1027 1027
         foreach ($this->associationMappings as $mapping) {
1028
-            if ( ! ClassLoader::classExists($mapping['targetEntity']) ) {
1028
+            if ( ! ClassLoader::classExists($mapping['targetEntity'])) {
1029 1029
                 throw MappingException::invalidTargetEntityClass($mapping['targetEntity'], $this->name, $mapping['fieldName']);
1030 1030
             }
1031 1031
         }
@@ -1103,7 +1103,7 @@  discard block
 block discarded – undo
1103 1103
         }
1104 1104
 
1105 1105
         if ( ! isset($cache['region'])) {
1106
-            $cache['region'] = strtolower(str_replace('\\', '_', $this->rootEntityName)) . '__' . $fieldName;
1106
+            $cache['region'] = strtolower(str_replace('\\', '_', $this->rootEntityName)).'__'.$fieldName;
1107 1107
         }
1108 1108
 
1109 1109
         return $cache;
@@ -1383,7 +1383,7 @@  discard block
 block discarded – undo
1383 1383
     protected function _validateAndCompleteFieldMapping(array &$mapping)
1384 1384
     {
1385 1385
         // Check mandatory fields
1386
-        if ( ! isset($mapping['fieldName']) || !$mapping['fieldName']) {
1386
+        if ( ! isset($mapping['fieldName']) || ! $mapping['fieldName']) {
1387 1387
             throw MappingException::missingFieldName($this->name);
1388 1388
         }
1389 1389
 
@@ -1496,14 +1496,14 @@  discard block
 block discarded – undo
1496 1496
                 $this->isIdentifierComposite = true;
1497 1497
             }
1498 1498
 
1499
-            if ($this->cache && !isset($mapping['cache'])) {
1499
+            if ($this->cache && ! isset($mapping['cache'])) {
1500 1500
                 throw CacheException::nonCacheableEntityAssociation($this->name, $mapping['fieldName']);
1501 1501
             }
1502 1502
         }
1503 1503
 
1504 1504
         // Mandatory attributes for both sides
1505 1505
         // Mandatory: fieldName, targetEntity
1506
-        if ( ! isset($mapping['fieldName']) || !$mapping['fieldName']) {
1506
+        if ( ! isset($mapping['fieldName']) || ! $mapping['fieldName']) {
1507 1507
             throw MappingException::missingFieldName($this->name);
1508 1508
         }
1509 1509
 
@@ -1627,7 +1627,7 @@  discard block
 block discarded – undo
1627 1627
                     throw new RuntimeException("ClassMetadataInfo::setTable() has to be called before defining a one to one relationship.");
1628 1628
                 }
1629 1629
 
1630
-                $this->table['uniqueConstraints'][$mapping['fieldName'] . "_uniq"] = [
1630
+                $this->table['uniqueConstraints'][$mapping['fieldName']."_uniq"] = [
1631 1631
                     'columns' => $uniqueConstraintColumns
1632 1632
                 ];
1633 1633
             }
@@ -1642,7 +1642,7 @@  discard block
 block discarded – undo
1642 1642
             unset($mapping['unique']);
1643 1643
         }
1644 1644
 
1645
-        if (isset($mapping['id']) && $mapping['id'] === true && !$mapping['isOwningSide']) {
1645
+        if (isset($mapping['id']) && $mapping['id'] === true && ! $mapping['isOwningSide']) {
1646 1646
             throw MappingException::illegalInverseIdentifierAssociation($this->name, $mapping['fieldName']);
1647 1647
         }
1648 1648
 
@@ -1696,7 +1696,7 @@  discard block
 block discarded – undo
1696 1696
             }
1697 1697
 
1698 1698
             $selfReferencingEntityWithoutJoinColumns = $mapping['sourceEntity'] == $mapping['targetEntity']
1699
-                && (! (isset($mapping['joinTable']['joinColumns']) || isset($mapping['joinTable']['inverseJoinColumns'])));
1699
+                && ( ! (isset($mapping['joinTable']['joinColumns']) || isset($mapping['joinTable']['inverseJoinColumns'])));
1700 1700
 
1701 1701
             if ( ! isset($mapping['joinTable']['joinColumns'])) {
1702 1702
                 $mapping['joinTable']['joinColumns'] = [
@@ -1885,7 +1885,7 @@  discard block
 block discarded – undo
1885 1885
 
1886 1886
             // Association defined as Id field
1887 1887
             $joinColumns      = $this->associationMappings[$idProperty]['joinColumns'];
1888
-            $assocColumnNames = array_map(function ($joinColumn) { return $joinColumn['name']; }, $joinColumns);
1888
+            $assocColumnNames = array_map(function($joinColumn) { return $joinColumn['name']; }, $joinColumns);
1889 1889
 
1890 1890
             $columnNames = array_merge($columnNames, $assocColumnNames);
1891 1891
         }
@@ -2066,7 +2066,7 @@  discard block
 block discarded – undo
2066 2066
     public function getTemporaryIdTableName()
2067 2067
     {
2068 2068
         // replace dots with underscores because PostgreSQL creates temporary tables in a special schema
2069
-        return str_replace('.', '_', $this->getTableName() . '_id_tmp');
2069
+        return str_replace('.', '_', $this->getTableName().'_id_tmp');
2070 2070
     }
2071 2071
 
2072 2072
     /**
@@ -2395,7 +2395,7 @@  discard block
 block discarded – undo
2395 2395
      */
2396 2396
     public function addNamedQuery(array $queryMapping)
2397 2397
     {
2398
-        if (!isset($queryMapping['name'])) {
2398
+        if ( ! isset($queryMapping['name'])) {
2399 2399
             throw MappingException::nameIsMandatoryForQueryMapping($this->name);
2400 2400
         }
2401 2401
 
@@ -2403,7 +2403,7 @@  discard block
 block discarded – undo
2403 2403
             throw MappingException::duplicateQueryMapping($this->name, $queryMapping['name']);
2404 2404
         }
2405 2405
 
2406
-        if (!isset($queryMapping['query'])) {
2406
+        if ( ! isset($queryMapping['query'])) {
2407 2407
             throw MappingException::emptyQueryMapping($this->name, $queryMapping['name']);
2408 2408
         }
2409 2409
 
@@ -2430,7 +2430,7 @@  discard block
 block discarded – undo
2430 2430
      */
2431 2431
     public function addNamedNativeQuery(array $queryMapping)
2432 2432
     {
2433
-        if (!isset($queryMapping['name'])) {
2433
+        if ( ! isset($queryMapping['name'])) {
2434 2434
             throw MappingException::nameIsMandatoryForQueryMapping($this->name);
2435 2435
         }
2436 2436
 
@@ -2438,11 +2438,11 @@  discard block
 block discarded – undo
2438 2438
             throw MappingException::duplicateQueryMapping($this->name, $queryMapping['name']);
2439 2439
         }
2440 2440
 
2441
-        if (!isset($queryMapping['query'])) {
2441
+        if ( ! isset($queryMapping['query'])) {
2442 2442
             throw MappingException::emptyQueryMapping($this->name, $queryMapping['name']);
2443 2443
         }
2444 2444
 
2445
-        if (!isset($queryMapping['resultClass']) && !isset($queryMapping['resultSetMapping'])) {
2445
+        if ( ! isset($queryMapping['resultClass']) && ! isset($queryMapping['resultSetMapping'])) {
2446 2446
             throw MappingException::missingQueryMapping($this->name, $queryMapping['name']);
2447 2447
         }
2448 2448
 
@@ -2474,7 +2474,7 @@  discard block
 block discarded – undo
2474 2474
      */
2475 2475
     public function addSqlResultSetMapping(array $resultMapping)
2476 2476
     {
2477
-        if (!isset($resultMapping['name'])) {
2477
+        if ( ! isset($resultMapping['name'])) {
2478 2478
             throw MappingException::nameIsMandatoryForSqlResultSetMapping($this->name);
2479 2479
         }
2480 2480
 
@@ -2484,7 +2484,7 @@  discard block
 block discarded – undo
2484 2484
 
2485 2485
         if (isset($resultMapping['entities'])) {
2486 2486
             foreach ($resultMapping['entities'] as $key => $entityResult) {
2487
-                if (!isset($entityResult['entityClass'])) {
2487
+                if ( ! isset($entityResult['entityClass'])) {
2488 2488
                     throw MappingException::missingResultSetMappingEntity($this->name, $resultMapping['name']);
2489 2489
                 }
2490 2490
 
@@ -2503,11 +2503,11 @@  discard block
 block discarded – undo
2503 2503
 
2504 2504
                 if (isset($entityResult['fields'])) {
2505 2505
                     foreach ($entityResult['fields'] as $k => $field) {
2506
-                        if (!isset($field['name'])) {
2506
+                        if ( ! isset($field['name'])) {
2507 2507
                             throw MappingException::missingResultSetMappingFieldName($this->name, $resultMapping['name']);
2508 2508
                         }
2509 2509
 
2510
-                        if (!isset($field['column'])) {
2510
+                        if ( ! isset($field['column'])) {
2511 2511
                             $fieldName = $field['name'];
2512 2512
                             if (strpos($fieldName, '.')) {
2513 2513
                                 list(, $fieldName) = explode('.', $fieldName);
@@ -2998,7 +2998,7 @@  discard block
 block discarded – undo
2998 2998
         }
2999 2999
 
3000 3000
         if ($definition['sequenceName'][0] == '`') {
3001
-            $definition['sequenceName']   = trim($definition['sequenceName'], '`');
3001
+            $definition['sequenceName'] = trim($definition['sequenceName'], '`');
3002 3002
             $definition['quoted'] = true;
3003 3003
         }
3004 3004
 
@@ -3090,7 +3090,7 @@  discard block
 block discarded – undo
3090 3090
     public function getAssociationTargetClass($assocName)
3091 3091
     {
3092 3092
         if ( ! isset($this->associationMappings[$assocName])) {
3093
-            throw new InvalidArgumentException("Association name expected, '" . $assocName ."' is not an association.");
3093
+            throw new InvalidArgumentException("Association name expected, '".$assocName."' is not an association.");
3094 3094
         }
3095 3095
 
3096 3096
         return $this->associationMappings[$assocName]['targetEntity'];
@@ -3129,7 +3129,7 @@  discard block
 block discarded – undo
3129 3129
             // Association defined as Id field
3130 3130
             $joinColumns            = $this->associationMappings[$idProperty]['joinColumns'];
3131 3131
             $assocQuotedColumnNames = array_map(
3132
-                function ($joinColumn) use ($platform) {
3132
+                function($joinColumn) use ($platform) {
3133 3133
                     return isset($joinColumn['quoted'])
3134 3134
                         ? $platform->quoteIdentifier($joinColumn['name'])
3135 3135
                         : $joinColumn['name'];
@@ -3240,7 +3240,7 @@  discard block
 block discarded – undo
3240 3240
         }
3241 3241
 
3242 3242
         if ($className !== null && strpos($className, '\\') === false && $this->namespace) {
3243
-            return $this->namespace . '\\' . $className;
3243
+            return $this->namespace.'\\'.$className;
3244 3244
         }
3245 3245
 
3246 3246
         return $className;
@@ -3294,15 +3294,15 @@  discard block
 block discarded – undo
3294 3294
                 ? $fieldMapping['originalClass']
3295 3295
                 : $embeddable->name;
3296 3296
             $fieldMapping['declaredField'] = isset($fieldMapping['declaredField'])
3297
-                ? $property . '.' . $fieldMapping['declaredField']
3297
+                ? $property.'.'.$fieldMapping['declaredField']
3298 3298
                 : $property;
3299 3299
             $fieldMapping['originalField'] = isset($fieldMapping['originalField'])
3300 3300
                 ? $fieldMapping['originalField']
3301 3301
                 : $fieldMapping['fieldName'];
3302
-            $fieldMapping['fieldName'] = $property . "." . $fieldMapping['fieldName'];
3302
+            $fieldMapping['fieldName'] = $property.".".$fieldMapping['fieldName'];
3303 3303
 
3304
-            if (! empty($this->embeddedClasses[$property]['columnPrefix'])) {
3305
-                $fieldMapping['columnName'] = $this->embeddedClasses[$property]['columnPrefix'] . $fieldMapping['columnName'];
3304
+            if ( ! empty($this->embeddedClasses[$property]['columnPrefix'])) {
3305
+                $fieldMapping['columnName'] = $this->embeddedClasses[$property]['columnPrefix'].$fieldMapping['columnName'];
3306 3306
             } elseif ($this->embeddedClasses[$property]['columnPrefix'] !== false) {
3307 3307
                 $fieldMapping['columnName'] = $this->namingStrategy
3308 3308
                     ->embeddedFieldToColumnName(
@@ -3343,7 +3343,7 @@  discard block
 block discarded – undo
3343 3343
     {
3344 3344
         $sequencePrefix = $this->getSequencePrefix($platform);
3345 3345
         $columnName     = $this->getSingleIdentifierColumnName();
3346
-        $sequenceName   = $sequencePrefix . '_' . $columnName . '_seq';
3346
+        $sequenceName   = $sequencePrefix.'_'.$columnName.'_seq';
3347 3347
 
3348 3348
         return $sequenceName;
3349 3349
     }
@@ -3363,10 +3363,10 @@  discard block
 block discarded – undo
3363 3363
 
3364 3364
         // Prepend the schema name to the table name if there is one
3365 3365
         if ($schemaName = $this->getSchemaName()) {
3366
-            $sequencePrefix = $schemaName . '.' . $tableName;
3366
+            $sequencePrefix = $schemaName.'.'.$tableName;
3367 3367
 
3368 3368
             if ( ! $platform->supportsSchemas() && $platform->canEmulateSchemas()) {
3369
-                $sequencePrefix = $schemaName . '__' . $tableName;
3369
+                $sequencePrefix = $schemaName.'__'.$tableName;
3370 3370
             }
3371 3371
         }
3372 3372
 
@@ -3378,8 +3378,8 @@  discard block
 block discarded – undo
3378 3378
      */
3379 3379
     private function assertMappingOrderBy(array $mapping)
3380 3380
     {
3381
-        if (isset($mapping['orderBy']) && !is_array($mapping['orderBy'])) {
3382
-            throw new InvalidArgumentException("'orderBy' is expected to be an array, not " . gettype($mapping['orderBy']));
3381
+        if (isset($mapping['orderBy']) && ! is_array($mapping['orderBy'])) {
3382
+            throw new InvalidArgumentException("'orderBy' is expected to be an array, not ".gettype($mapping['orderBy']));
3383 3383
         }
3384 3384
     }
3385 3385
 }
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1428,7 +1428,7 @@
 block discarded – undo
1428 1428
 
1429 1429
         if (Type::hasType($mapping['type']) && Type::getType($mapping['type'])->canRequireSQLConversion()) {
1430 1430
             if (isset($mapping['id']) && true === $mapping['id']) {
1431
-                 throw MappingException::sqlConversionNotAllowedForIdentifiers($this->name, $mapping['fieldName'], $mapping['type']);
1431
+                    throw MappingException::sqlConversionNotAllowedForIdentifiers($this->name, $mapping['fieldName'], $mapping['type']);
1432 1432
             }
1433 1433
 
1434 1434
             $mapping['requireSQLConversion'] = true;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/Locking/GearmanLockTest.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -148,6 +148,9 @@  discard block
 block discarded – undo
148 148
         );
149 149
     }
150 150
 
151
+    /**
152
+     * @param string $dql
153
+     */
151 154
     protected function asyncDqlWithLock($dql, $params, $lockMode)
152 155
     {
153 156
         $this->startJob('dqlWithLock', [
@@ -168,6 +171,9 @@  discard block
 block discarded – undo
168 171
         );
169 172
     }
170 173
 
174
+    /**
175
+     * @param string $fn
176
+     */
171 177
     protected function startJob($fn, $fixture)
172 178
     {
173 179
         $this->gearman->addTask($fn, serialize(
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
     protected function setUp()
19 19
     {
20
-        if (!class_exists('GearmanClient', false)) {
20
+        if ( ! class_exists('GearmanClient', false)) {
21 21
             $this->markTestSkipped('pecl/gearman is required for this test to run.');
22 22
         }
23 23
 
@@ -133,11 +133,11 @@  discard block
 block discarded – undo
133 133
         $this->gearman->runTasks();
134 134
 
135 135
         $this->assertTrue($this->maxRunTime > $forTime,
136
-            "Because of locking this tests should have run at least " . $forTime . " seconds, ".
137
-            "but only did for " . $this->maxRunTime . " seconds.");
136
+            "Because of locking this tests should have run at least ".$forTime." seconds, ".
137
+            "but only did for ".$this->maxRunTime." seconds.");
138 138
         $this->assertTrue($this->maxRunTime < $notLongerThan,
139
-            "The longest task should not run longer than " . $notLongerThan . " seconds, ".
140
-            "but did for " . $this->maxRunTime . " seconds."
139
+            "The longest task should not run longer than ".$notLongerThan." seconds, ".
140
+            "but did for ".$this->maxRunTime." seconds."
141 141
         );
142 142
     }
143 143
 
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -176,6 +176,9 @@  discard block
 block discarded – undo
176 176
         $this->assertFalse($em->getFilters()->isEnabled("foo_filter"));
177 177
     }
178 178
 
179
+    /**
180
+     * @param EntityManager $em
181
+     */
179 182
     protected function configureFilters($em)
180 183
     {
181 184
         // Add filters to the configuration of the EM
@@ -889,6 +892,9 @@  discard block
 block discarded – undo
889 892
         $this->assertEquals(2, count($manager->managedContracts->slice(0, 10)));
890 893
     }
891 894
 
895
+    /**
896
+     * @param string $name
897
+     */
892 898
     private function usePersonNameFilter($name)
893 899
     {
894 900
         // Enable the filter
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -568,11 +568,11 @@  discard block
 block discarded – undo
568 568
         $user = $this->_em->find(CmsUser::class, $this->userId);
569 569
 
570 570
         $this->assertFalse($user->articles->isInitialized());
571
-        $this->assertEquals(2, count($user->articles->slice(0,10)));
571
+        $this->assertEquals(2, count($user->articles->slice(0, 10)));
572 572
 
573 573
         $this->useCMSArticleTopicFilter();
574 574
 
575
-        $this->assertEquals(1, count($user->articles->slice(0,10)));
575
+        $this->assertEquals(1, count($user->articles->slice(0, 10)));
576 576
     }
577 577
 
578 578
     private function useCMSGroupPrefixFilter()
@@ -616,11 +616,11 @@  discard block
 block discarded – undo
616 616
         $user = $this->_em->find(CmsUser::class, $this->userId2);
617 617
 
618 618
         $this->assertFalse($user->groups->isInitialized());
619
-        $this->assertEquals(2, count($user->groups->slice(0,10)));
619
+        $this->assertEquals(2, count($user->groups->slice(0, 10)));
620 620
 
621 621
         $this->useCMSGroupPrefixFilter();
622 622
 
623
-        $this->assertEquals(1, count($user->groups->slice(0,10)));
623
+        $this->assertEquals(1, count($user->groups->slice(0, 10)));
624 624
     }
625 625
 
626 626
     private function loadFixtureData()
@@ -1106,11 +1106,11 @@  discard block
 block discarded – undo
1106 1106
 {
1107 1107
     public function addFilterConstraint(ClassMetadata $targetEntity, $targetTableAlias)
1108 1108
     {
1109
-        if (!in_array("LocaleAware", $targetEntity->reflClass->getInterfaceNames())) {
1109
+        if ( ! in_array("LocaleAware", $targetEntity->reflClass->getInterfaceNames())) {
1110 1110
             return "";
1111 1111
         }
1112 1112
 
1113
-        return $targetTableAlias.'.locale = ' . $this->getParameter('locale'); // getParam uses connection to quote the value.
1113
+        return $targetTableAlias.'.locale = '.$this->getParameter('locale'); // getParam uses connection to quote the value.
1114 1114
     }
1115 1115
 }
1116 1116
 
@@ -1122,7 +1122,7 @@  discard block
 block discarded – undo
1122 1122
             return "";
1123 1123
         }
1124 1124
 
1125
-        return $targetTableAlias.'.country = ' . $this->getParameter('country'); // getParam uses connection to quote the value.
1125
+        return $targetTableAlias.'.country = '.$this->getParameter('country'); // getParam uses connection to quote the value.
1126 1126
     }
1127 1127
 }
1128 1128
 
@@ -1134,7 +1134,7 @@  discard block
 block discarded – undo
1134 1134
             return "";
1135 1135
         }
1136 1136
 
1137
-        return $targetTableAlias.'.name LIKE ' . $this->getParameter('prefix'); // getParam uses connection to quote the value.
1137
+        return $targetTableAlias.'.name LIKE '.$this->getParameter('prefix'); // getParam uses connection to quote the value.
1138 1138
     }
1139 1139
 }
1140 1140
 
@@ -1146,7 +1146,7 @@  discard block
 block discarded – undo
1146 1146
             return "";
1147 1147
         }
1148 1148
 
1149
-        return $targetTableAlias.'.topic = ' . $this->getParameter('topic'); // getParam uses connection to quote the value.
1149
+        return $targetTableAlias.'.topic = '.$this->getParameter('topic'); // getParam uses connection to quote the value.
1150 1150
     }
1151 1151
 }
1152 1152
 
@@ -1158,7 +1158,7 @@  discard block
 block discarded – undo
1158 1158
             return "";
1159 1159
         }
1160 1160
 
1161
-        return $targetTableAlias.'.name LIKE ' . $this->getParameter('name');
1161
+        return $targetTableAlias.'.name LIKE '.$this->getParameter('name');
1162 1162
     }
1163 1163
 }
1164 1164
 
@@ -1170,7 +1170,7 @@  discard block
 block discarded – undo
1170 1170
             return "";
1171 1171
         }
1172 1172
 
1173
-        return $targetTableAlias.'.completed = ' . $this->getParameter('completed');
1173
+        return $targetTableAlias.'.completed = '.$this->getParameter('completed');
1174 1174
     }
1175 1175
 }
1176 1176
 
@@ -1182,6 +1182,6 @@  discard block
 block discarded – undo
1182 1182
             return "";
1183 1183
         }
1184 1184
 
1185
-        return $targetTableAlias.'.id = ' . $this->getParameter('id');
1185
+        return $targetTableAlias.'.id = '.$this->getParameter('id');
1186 1186
     }
1187 1187
 }
Please login to merge, or discard this patch.
tools/sandbox/bootstrap.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@  discard block
 block discarded – undo
5 5
 
6 6
 // Path to composer autoloader. You can use different provided by your favorite framework,
7 7
 // if you want to.
8
-$loaderPath = __DIR__ . '/../../vendor/autoload.php';
9
-if(!is_readable($loaderPath)){
8
+$loaderPath = __DIR__.'/../../vendor/autoload.php';
9
+if ( ! is_readable($loaderPath)) {
10 10
     throw new LogicException('Run php composer.phar install at first');
11 11
 }
12 12
 $loader = require $loaderPath;
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 $config = new \Doctrine\ORM\Configuration();
20 20
 
21 21
 // Set up Metadata Drivers
22
-$driverImpl = $config->newDefaultAnnotationDriver([__DIR__ . "/Entities"]);
22
+$driverImpl = $config->newDefaultAnnotationDriver([__DIR__."/Entities"]);
23 23
 $config->setMetadataDriverImpl($driverImpl);
24 24
 
25 25
 // Set up caches, depending on $debug variable.
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 $config->setQueryCacheImpl($cache);
30 30
 
31 31
 // Proxy configuration
32
-$config->setProxyDir(__DIR__ . '/Proxies');
32
+$config->setProxyDir(__DIR__.'/Proxies');
33 33
 $config->setProxyNamespace('Proxies');
34 34
 
35 35
 // Database connection information
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             $args[] = $sqlWalker->walkStringPrimary($expression);
54 54
         }
55 55
 
56
-        return call_user_func_array([$platform,'getConcatExpression'], $args);
56
+        return call_user_func_array([$platform, 'getConcatExpression'], $args);
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Query/Parser.php 2 patches
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
         $tokenStr = substr($dql, $token['position'], $length);
493 493
 
494 494
         // Building informative message
495
-        $message = 'line 0, col ' . $tokenPos . " near '" . $tokenStr . "': Error: " . $message;
495
+        $message = 'line 0, col '.$tokenPos." near '".$tokenStr."': Error: ".$message;
496 496
 
497 497
         throw QueryException::semanticalError($message, QueryException::dqlError($this->query->getDQL()));
498 498
     }
@@ -639,7 +639,7 @@  discard block
 block discarded – undo
639 639
             // If the namespace is not given then assumes the first FROM entity namespace
640 640
             if (strpos($className, '\\') === false && ! class_exists($className) && strpos($fromClassName, '\\') !== false) {
641 641
                 $namespace  = substr($fromClassName, 0, strrpos($fromClassName, '\\'));
642
-                $fqcn       = $namespace . '\\' . $className;
642
+                $fqcn       = $namespace.'\\'.$className;
643 643
 
644 644
                 if (class_exists($fqcn)) {
645 645
                     $expression->className  = $fqcn;
@@ -691,13 +691,13 @@  discard block
 block discarded – undo
691 691
                 }
692 692
 
693 693
                 $this->semanticalError(
694
-                    "There is no mapped field named '$field' on class " . $class->name . ".", $deferredItem['token']
694
+                    "There is no mapped field named '$field' on class ".$class->name.".", $deferredItem['token']
695 695
                 );
696 696
             }
697 697
 
698 698
             if (array_intersect($class->identifier, $expr->partialFieldSet) != $class->identifier) {
699 699
                 $this->semanticalError(
700
-                    "The partial field selection of class " . $class->name . " must contain the identifier.",
700
+                    "The partial field selection of class ".$class->name." must contain the identifier.",
701 701
                     $deferredItem['token']
702 702
                 );
703 703
             }
@@ -768,7 +768,7 @@  discard block
 block discarded – undo
768 768
             // Check if field or association exists
769 769
             if ( ! isset($class->associationMappings[$field]) && ! isset($class->fieldMappings[$field])) {
770 770
                 $this->semanticalError(
771
-                    'Class ' . $class->name . ' has no field or association named ' . $field,
771
+                    'Class '.$class->name.' has no field or association named '.$field,
772 772
                     $deferredItem['token']
773 773
                 );
774 774
             }
@@ -808,8 +808,8 @@  discard block
 block discarded – undo
808 808
                 // Build the error message
809 809
                 $semanticalError  = 'Invalid PathExpression. ';
810 810
                 $semanticalError .= (count($expectedStringTypes) == 1)
811
-                    ? 'Must be a ' . $expectedStringTypes[0] . '.'
812
-                    : implode(' or ', $expectedStringTypes) . ' expected.';
811
+                    ? 'Must be a '.$expectedStringTypes[0].'.'
812
+                    : implode(' or ', $expectedStringTypes).' expected.';
813 813
 
814 814
                 $this->semanticalError($semanticalError, $deferredItem['token']);
815 815
             }
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
 
979 979
             list($namespaceAlias, $simpleClassName) = explode(':', $this->lexer->token['value']);
980 980
 
981
-            $schemaName = $this->em->getConfiguration()->getEntityNamespace($namespaceAlias) . '\\' . $simpleClassName;
981
+            $schemaName = $this->em->getConfiguration()->getEntityNamespace($namespaceAlias).'\\'.$simpleClassName;
982 982
         }
983 983
 
984 984
         return $schemaName;
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
      */
994 994
     private function validateAbstractSchemaName($schemaName)
995 995
     {
996
-        if (! (class_exists($schemaName, true) || interface_exists($schemaName, true))) {
996
+        if ( ! (class_exists($schemaName, true) || interface_exists($schemaName, true))) {
997 997
             $this->semanticalError("Class '$schemaName' is not defined.", $this->lexer->token);
998 998
         }
999 999
     }
@@ -1049,7 +1049,7 @@  discard block
 block discarded – undo
1049 1049
 
1050 1050
         if ( ! isset($this->queryComponents[$identVariable])) {
1051 1051
             $this->semanticalError(
1052
-                'Identification Variable ' . $identVariable .' used in join path expression but was not defined before.'
1052
+                'Identification Variable '.$identVariable.' used in join path expression but was not defined before.'
1053 1053
             );
1054 1054
         }
1055 1055
 
@@ -1063,7 +1063,7 @@  discard block
 block discarded – undo
1063 1063
         $class = $qComp['metadata'];
1064 1064
 
1065 1065
         if ( ! $class->hasAssociation($field)) {
1066
-            $this->semanticalError('Class ' . $class->name . ' has no association named ' . $field);
1066
+            $this->semanticalError('Class '.$class->name.' has no association named '.$field);
1067 1067
         }
1068 1068
 
1069 1069
         return new AST\JoinAssociationPathExpression($identVariable, $field);
@@ -2485,7 +2485,7 @@  discard block
 block discarded – undo
2485 2485
         // Peek beyond the matching closing parenthesis ')'
2486 2486
         $peek = $this->peekBeyondClosingParenthesis();
2487 2487
 
2488
-        if (in_array($peek['value'], ["=",  "<", "<=", "<>", ">", ">=", "!="]) ||
2488
+        if (in_array($peek['value'], ["=", "<", "<=", "<>", ">", ">=", "!="]) ||
2489 2489
             in_array($peek['type'], [Lexer::T_NOT, Lexer::T_BETWEEN, Lexer::T_LIKE, Lexer::T_IN, Lexer::T_IS, Lexer::T_EXISTS]) ||
2490 2490
             $this->isMathOperator($peek)) {
2491 2491
             $condPrimary->simpleConditionalExpression = $this->SimpleConditionalExpression();
@@ -2590,7 +2590,7 @@  discard block
 block discarded – undo
2590 2590
             return $this->NullComparisonExpression();
2591 2591
         }
2592 2592
 
2593
-        if ($token['type'] === Lexer::T_IS  && $lookahead['type'] === Lexer::T_EMPTY) {
2593
+        if ($token['type'] === Lexer::T_IS && $lookahead['type'] === Lexer::T_EMPTY) {
2594 2594
             return $this->EmptyCollectionComparisonExpression();
2595 2595
         }
2596 2596
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
      * declarations (from ... x join ... y join ... z ...) appear in the query
414 414
      * as the hydration process relies on that order for proper operation.
415 415
      *
416
-     * @param AST\SelectStatement|AST\DeleteStatement|AST\UpdateStatement $AST
416
+     * @param AST\SelectStatement $AST
417 417
      *
418 418
      * @return void
419 419
      */
@@ -1617,7 +1617,7 @@  discard block
 block discarded – undo
1617 1617
      * accessible is "FROM", prohibiting an easy implementation without larger
1618 1618
      * changes.}
1619 1619
      *
1620
-     * @return \Doctrine\ORM\Query\AST\SubselectIdentificationVariableDeclaration |
1620
+     * @return AST\IdentificationVariableDeclaration |
1621 1621
      *         \Doctrine\ORM\Query\AST\IdentificationVariableDeclaration
1622 1622
      */
1623 1623
     public function SubselectIdentificationVariableDeclaration()
@@ -1755,7 +1755,7 @@  discard block
 block discarded – undo
1755 1755
     /**
1756 1756
      * JoinAssociationDeclaration ::= JoinAssociationPathExpression ["AS"] AliasIdentificationVariable [IndexBy]
1757 1757
      *
1758
-     * @return \Doctrine\ORM\Query\AST\JoinAssociationPathExpression
1758
+     * @return AST\JoinAssociationDeclaration
1759 1759
      */
1760 1760
     public function JoinAssociationDeclaration()
1761 1761
     {
Please login to merge, or discard this patch.