Jacek Kowalski
2021-07-30 6e1dac584a72cb048fa1314fabb24df9411796f2
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,
      ];