Skip to content

Commit e6a9666

Browse files
authored
ci(codestyle): fix test codestyle (#2710)
## Description Fixes CI ## What type of PR is this? (check all applicable) - [ ] Bug Fix - [ ] Feature - [ ] Refactor - [ ] Deprecation - [ ] Breaking Change - [ ] Documentation Update - [ ] CI ## Checklist - [ ] I have made corresponding changes to the documentation (`docs/`)
1 parent 7f69a49 commit e6a9666

2 files changed

Lines changed: 4 additions & 14 deletions

File tree

phpstan-baseline.neon

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,3 @@ parameters:
4141
identifier: class.notFound
4242
count: 2
4343
path: src/Render/Html/HtmlOpenApiRenderer.php
44-
45-
-
46-
message: '#^Unable to resolve the template type T in call to static method Symfony\\Component\\TypeInfo\\Type\:\:collection\(\)$#'
47-
identifier: argument.templateType
48-
count: 1
49-
path: src/Util/LegacyTypeConverter.php

tests/Functional/Controller/JMSController.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ public function minUserNestedAction(): void
132132
response: 200,
133133
description: 'Success',
134134
content: new Model(type: Article81::class)
135-
)
136-
]
135+
)]
137136
public function enum(): void
138137
{
139138
}
@@ -143,8 +142,7 @@ public function enum(): void
143142
response: 200,
144143
description: 'Success',
145144
content: new Model(type: JMSAbstractUser::class)
146-
)
147-
]
145+
)]
148146
public function discriminatorMapAction(): void
149147
{
150148
}
@@ -154,8 +152,7 @@ public function discriminatorMapAction(): void
154152
response: 200,
155153
description: 'Success',
156154
content: new Model(type: JMSEnum::class)
157-
)
158-
]
155+
)]
159156
public function enumArrayAction(): void
160157
{
161158
}
@@ -165,8 +162,7 @@ public function enumArrayAction(): void
165162
response: 200,
166163
description: 'Success',
167164
content: new Model(type: JMSIgnoredProperty::class)
168-
)
169-
]
165+
)]
170166
public function ignoredProperty(): void
171167
{
172168
}

0 commit comments

Comments
 (0)