@@ -382,7 +382,7 @@ public function testNormalizeWithOnlyNormalizationGroups()
382
382
$ documentation = new Documentation (new ResourceNameCollection ([Dummy::class]), $ title , $ description , $ version , $ formats );
383
383
$ groups = ['dummy ' , 'foo ' , 'bar ' ];
384
384
385
- $ ref = 'Dummy_ ' . md5 ( serialize ( $ groups) );
385
+ $ ref = 'Dummy- ' . implode ( ' _ ' , $ groups );
386
386
387
387
$ propertyNameCollectionFactoryProphecy = $ this ->prophesize (PropertyNameCollectionFactoryInterface::class);
388
388
$ propertyNameCollectionFactoryProphecy ->create (Dummy::class, ['serializer_groups ' => $ groups ])->shouldBeCalled (1 )->willReturn (new PropertyNameCollection (['gerard ' ]));
@@ -697,7 +697,7 @@ public function testNormalizeWithOnlyDenormalizationGroups()
697
697
'name ' => 'dummy ' ,
698
698
'in ' => 'body ' ,
699
699
'description ' => 'The updated Dummy resource ' ,
700
- 'schema ' => ['$ref ' => '#/definitions/Dummy_be35824b9d92d1dfc6f78fe086649b8f ' ],
700
+ 'schema ' => ['$ref ' => '#/definitions/Dummy-dummy ' ],
701
701
],
702
702
],
703
703
'responses ' => [
@@ -723,7 +723,7 @@ public function testNormalizeWithOnlyDenormalizationGroups()
723
723
]),
724
724
],
725
725
]),
726
- 'Dummy_be35824b9d92d1dfc6f78fe086649b8f ' => new \ArrayObject ([
726
+ 'Dummy-dummy ' => new \ArrayObject ([
727
727
'type ' => 'object ' ,
728
728
'description ' => 'This is a dummy. ' ,
729
729
'externalDocs ' => ['url ' => 'http://schema.example.com/Dummy ' ],
@@ -882,13 +882,13 @@ public function testNormalizeWithNormalizationAndDenormalizationGroups()
882
882
'name ' => 'dummy ' ,
883
883
'in ' => 'body ' ,
884
884
'description ' => 'The updated Dummy resource ' ,
885
- 'schema ' => ['$ref ' => '#/definitions/Dummy_be35824b9d92d1dfc6f78fe086649b8f ' ],
885
+ 'schema ' => ['$ref ' => '#/definitions/Dummy-dummy ' ],
886
886
],
887
887
],
888
888
'responses ' => [
889
889
200 => [
890
890
'description ' => 'Dummy resource updated ' ,
891
- 'schema ' => ['$ref ' => '#/definitions/Dummy_be35824b9d92d1dfc6f78fe086649b8f ' ],
891
+ 'schema ' => ['$ref ' => '#/definitions/Dummy-dummy ' ],
892
892
],
893
893
400 => ['description ' => 'Invalid input ' ],
894
894
404 => ['description ' => 'Resource not found ' ],
@@ -908,7 +908,7 @@ public function testNormalizeWithNormalizationAndDenormalizationGroups()
908
908
]),
909
909
],
910
910
]),
911
- 'Dummy_be35824b9d92d1dfc6f78fe086649b8f ' => new \ArrayObject ([
911
+ 'Dummy-dummy ' => new \ArrayObject ([
912
912
'type ' => 'object ' ,
913
913
'description ' => 'This is a dummy. ' ,
914
914
'externalDocs ' => ['url ' => 'http://schema.example.com/Dummy ' ],
@@ -1136,8 +1136,8 @@ public function testNormalizeWithNestedNormalizationGroups()
1136
1136
$ version = '1.2.3 ' ;
1137
1137
$ documentation = new Documentation (new ResourceNameCollection ([Dummy::class]), $ title , $ description , $ version , $ formats );
1138
1138
$ groups = ['dummy ' , 'foo ' , 'bar ' ];
1139
- $ ref = 'Dummy_ ' . md5 ( serialize ( $ groups) );
1140
- $ relatedDummyRef = 'RelatedDummy_ ' . md5 ( serialize ( $ groups) );
1139
+ $ ref = 'Dummy- ' . implode ( ' _ ' , $ groups );
1140
+ $ relatedDummyRef = 'RelatedDummy- ' . implode ( ' _ ' , $ groups );
1141
1141
1142
1142
$ propertyNameCollectionFactoryProphecy = $ this ->prophesize (PropertyNameCollectionFactoryInterface::class);
1143
1143
$ propertyNameCollectionFactoryProphecy ->create (Dummy::class, ['serializer_groups ' => $ groups ])->shouldBeCalled (1 )->willReturn (new PropertyNameCollection (['name ' , 'relatedDummy ' ]));
0 commit comments