Merge branch '3.0'

This commit is contained in:
terrafrost 2022-03-08 20:53:33 -06:00
commit 1c35df08dc

View File

@ -390,10 +390,11 @@ abstract class Engine
*/
public function __debugInfo()
{
return [
$result = [
'value' => '0x' . $this->toHex(true),
'engine' => basename(static::class)
];
return $this->precision > 0 ? $result + ['precision' => $this->precision] : $result;
}
/**