Jacek Kowalski
2023-11-06 85e6c26acb0778dda25dcc4a8b2cecada7a12536
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,
      ];