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 b3bfaa4 commit 60ec382Copy full SHA for 60ec382
src/OpenApi/Storage/OpenAPI/ServersStorage.php
@@ -19,7 +19,7 @@ public function __construct(
19
20
public function addVariable(string $name, $description, $default = ''): static
21
{
22
- $this->variables = $this->variables instanceof stdClass::class ? [] : $this->variables;
+ $this->variables = $this->variables instanceof stdClass ? [] : $this->variables;
23
24
$this->variables[$name] = ['default' => $default, 'description'=> $description];
25
0 commit comments