Jacek Kowalski
2021-02-18 e372cb5d38000bebe11180801c1fd6d718adda0b
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,
      ];