• Leonard Hecker's avatar
    php: Fix formatting of Duration (#6155) · 43307d4d
    Leonard Hecker authored
    * php: Fixed php notices for unknown enum indices
    
    * php: Fixed formatting of Duration
    
    This fixes:
    * Missing nanoseconds. The nanoseconds where divided as a float and
      implicitly converted to a string before being passed to bcadd.
      This can result in a float formatted in scientific/exponential notation,
      which bcmath doesn't understand.
    * Durations are supposed to be formatted without trailing zeroes.
    43307d4d
EnumDescriptor.php 2.53 KB