Lines Matching refs:millis
44 private $millis; variable in TSPAccuracy
94 if (!is_null($this->millis)) {
98 $millis = $item->getObjectAs(ASN1_TAG_INTEGER);
100 if (!$millis instanceof ASN1Integer) {
104 if ((int) $millis->getValue() < 1) {
105 … throw new GTException("Invalid value for millis: {$millis->getValue()}");
108 if ((int) $millis->getValue() > 999) {
109 … throw new GTException("Invalid value for millis: {$millis->getValue()}");
112 $this->millis = $millis->getValue();
167 if ($this->millis != null) {
173 $tag->setObject(new ASN1Integer($this->millis));
208 if (!is_null($this->millis)) {
209 $accuracy = $accuracy->add(new GTBigInteger($this->millis));