Skip to content

Commit

Permalink
Change the TTL type to an integer. Bug tymondesigns#2256
Browse files Browse the repository at this point in the history
  • Loading branch information
farshan-dev committed May 29, 2024
1 parent 51620eb commit 9fa69f3
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 @@ -191,7 +191,7 @@ public function setRequest(Request $request)
*/
public function setTTL($ttl)
{
$this->ttl = $ttl;
$this->ttl = (int) $ttl;

return $this;
}
Expand Down

0 comments on commit 9fa69f3

Please sign in to comment.