Skip to content

Commit

Permalink
Fixed bug that the mixed cannot be marked as nullable.
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo committed Dec 20, 2023
1 parent 50e2f09 commit 48c7552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Wrapper/ConfigWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function has(string $payload): bool
return $this->config->has($payload);
}

public function set(string $payload): ?mixed
public function set(string $payload): mixed
{
$this->config->set($payload['key'], $payload['value']);
return null;
Expand Down

0 comments on commit 48c7552

Please sign in to comment.