We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8daed39 commit 2c63fc7Copy full SHA for 2c63fc7
tests/Symfony/Bundle/Command/OpenApiCommandTest.php
@@ -36,6 +36,8 @@ protected function setUp(): void
36
$application->setAutoExit(false);
37
38
$this->tester = new ApplicationTester($application);
39
+
40
+ $this->handleDeprecations();
41
}
42
43
public function testExecute(): void
@@ -110,4 +112,12 @@ private function assertYaml(string $data): void
110
112
111
113
$this->addToAssertionCount(1);
114
115
116
+ /**
117
+ * TODO Remove in 4.0
118
+ */
119
+ private function handleDeprecations(): void
120
+ {
121
+ $this->expectDeprecationMessage('The "openapiContext" option is deprecated, use "openapi" instead.');
122
+ }
123
0 commit comments