Skip to content

Commit

Permalink
fix: issue when using let with http protocol
Browse files Browse the repository at this point in the history
- the type of the second argument was changed from `string` to `mixed`
  • Loading branch information
welpie21 committed Nov 29, 2024
1 parent 1e97f66 commit bb03776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Traits/SurrealTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public function getScope(): ?string
* @param string $value
* @return null
*/
public function let(string $param, string $value): null
public function let(string $param, mixed $value): null
{
$this->params[$param] = $value;
return null;
Expand Down

0 comments on commit bb03776

Please sign in to comment.