Skip to content

Commit

Permalink
Merge pull request #9014 from theodorejb/patch-1
Browse files Browse the repository at this point in the history
Fix PHPCS trailing comma
  • Loading branch information
orklah committed Dec 28, 2022
2 parents dbcfe62 + e4b0343 commit 7b8b44c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ private static function getGlobalTypeInner(string $var_id, bool $files_full_path
if ($var_id === '$http_response_header') {
// $http_response_header exists only in the local scope after a successful network request
return new Union([
Type::getNonEmptyListAtomic(Type::getNonFalsyString())
Type::getNonEmptyListAtomic(Type::getNonFalsyString()),
], [
'possibly_undefined' => true,
]);
Expand Down

0 comments on commit 7b8b44c

Please sign in to comment.