Skip to content

Commit

Permalink
Change the LEEWAY type to an integer. Bug tymondesigns#2264
Browse files Browse the repository at this point in the history
  • Loading branch information
farshan-dev committed May 29, 2024
1 parent 9fa69f3 commit a3b9248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Claims/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public function getTTL()
*/
public function setLeeway($leeway)
{
$this->leeway = $leeway;
$this->leeway = (int) $leeway;

return $this;
}
Expand Down

0 comments on commit a3b9248

Please sign in to comment.