Skip to content

Commit 85ea798

Browse files
committed
Make implicitly null param explicitly null
Update the `isSkipped` method parameter `$operation` to be explicitly null.
1 parent 7092b80 commit 85ea798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AmazonPHP/SellingPartner/Configuration/LoggerConfiguration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public function enableAPIOperation(string $api, string $operation) : self
124124
return $this;
125125
}
126126

127-
public function isSkipped(string $api, string $operation = null) : bool
127+
public function isSkipped(string $api, string|null $operation = null) : bool
128128
{
129129
if (\in_array($api, $this->skippedAPIs, true)) {
130130
return true;

0 commit comments

Comments
 (0)