* @param int $n */
($n)
| 84 | * @param int $n |
| 85 | */ |
| 86 | public function writeLong($n) |
| 87 | { |
| 88 | if (Avro::usesGmp()) { |
| 89 | $this->write(AvroGMP::encodeLong($n)); |
| 90 | } else { |
| 91 | $this->write(self::encodeLong($n)); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * @param int|string $n |
no test coverage detected