Skip to content

Commit 48c7552

Browse files
committed
Fixed bug that the mixed cannot be marked as nullable.
1 parent 50e2f09 commit 48c7552

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Wrapper/ConfigWrapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function has(string $payload): bool
3131
return $this->config->has($payload);
3232
}
3333

34-
public function set(string $payload): ?mixed
34+
public function set(string $payload): mixed
3535
{
3636
$this->config->set($payload['key'], $payload['value']);
3737
return null;

0 commit comments

Comments
 (0)