Skip to content

Commit

Permalink
Change return type to static binding
Browse files Browse the repository at this point in the history
  • Loading branch information
sop committed May 13, 2019
1 parent 53ee473 commit efc1209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/JWX/Parameter/Feature/Base64UIntValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ trait Base64UIntValue
public static function fromNumber($number): Parameter
{
$data = BigInt::fromBase10($number)->base256();
return self::fromString($data);
return static::fromString($data);
}

/**
Expand Down

0 comments on commit efc1209

Please sign in to comment.