Jacek Kowalski
2023-07-24 f4f38a9701e7f8339ed9e8d3992026eaeb6ec376
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,
      ];