Skip to content

Commit

Permalink
fixed cards retrieve issue
Browse files Browse the repository at this point in the history
  • Loading branch information
moazam1 committed Aug 18, 2023
1 parent 5a4a740 commit 8d90f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Models/Links.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Links implements \JsonSerializable
* @param string $previous
* @param string $last
*/
public function __construct(string $first, string $previous, string $last)
public function __construct(string $first, ?string $previous=null, ?string $last=null)
{
$this->first = $first;
$this->previous = $previous;
Expand Down

0 comments on commit 8d90f32

Please sign in to comment.