1
0
mirror of https://github.com/danog/phpseclib.git synced 2024-12-03 10:08:04 +01:00

fix pslam error

This commit is contained in:
terrafrost 2022-03-11 18:57:49 -06:00
parent f04a4e6fda
commit 887cf97185

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();
}