Jacek Kowalski
2021-06-20 86e6f6d9c9c0340d32fb9fbf93fdc938bef75bcf
lib/VehicleTypes.php
@@ -17,8 +17,9 @@
   }
   
   public function getByNumber($id) {
      $id = intval($id, 10);
      return $this->typesByNumber[$id] ?? [
         'num' => '??'.$id,
         'num' => '??' . str_pad($id, 3, '0', STR_PAD_LEFT),
         'type' => '?',
         'low' => NULL,
      ];