Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
static-analyze:
name: "Static Analyze"

runs-on: "ubuntu-20.04"
runs-on: "ubuntu-22.04"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
php-version:
- "8.2"
operating-system:
- "ubuntu-20.04"
- "ubuntu-22.04"

steps:
- name: "Checkout"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function enableAPIOperation(string $api, string $operation) : self
return $this;
}

public function isSkipped(string $api, string $operation = null) : bool
public function isSkipped(string $api, string|null $operation = null) : bool
{
if (\in_array($api, $this->skippedAPIs, true)) {
return true;
Expand Down
Loading