Exemplo n.º 1
0
 public function convertToPHPValue($value, AbstractPlatform $platform)
 {
     if ($value === null) {
         return null;
     }
     $value = Util::convertScientificNotationToDecimal($value);
     return \gmp_init($value);
 }