fix pslam error

This commit is contained in:
terrafrost 2022-03-11 18:57:49 -06:00
parent f04a4e6fda
commit 887cf97185
1 changed files with 7 additions and 0 deletions

View File

@ -35,4 +35,11 @@ abstract class Integer implements \JsonSerializable
{
return ['hex' => $this->toHex(true)];
}
/**
* Converts an Integer to a hex string (eg. base-16).
*
* @return string
*/
abstract public function toHex();
}