Skip to content

Commit c978b9e

Browse files
authored
fix: phpstan issue
1 parent 7197eaa commit c978b9e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/PHPDraft/Out/OpenAPI/OpenApiRenderer.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ private function toOperation(HTTPRequest $request, Transition $transition, array
164164

165165
foreach ($request->headers as $name => $value) {
166166
if ($name === 'Content-Type') { continue; }
167-
if ($name === $this->base_data['API_KEY_HEADER'] ?? NULL) {
167+
if (isset($this->base_data['API_KEY_HEADER'])
168+
&& $this->base_data['API_KEY_HEADER'] === $name) {
168169
$operation['security'] = [["api_key" => []]];
169170
continue;
170171
}

0 commit comments

Comments
 (0)