Service::dpd()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 8
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 11
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Inspirum\Balikobot\Definitions;
6
7
final class Service extends BaseEnum
8
{
9
    /**
10
     * Balík do ruky
11
     */
12
    public const CP_DR = 'DR';
13
14
    /**
15
     * Doporučená zásilka Ekonomická
16
     */
17
    public const CP_RR = 'RR';
18
19
    /**
20
     * Balík Na poštu
21
     */
22
    public const CP_NP = 'NP';
23
24
    /**
25
     * Balík Na poštu
26
     */
27
    public const CP_NV = 'NV';
28
29
    /**
30
     * Balík do ruky pro vybrané podavatele
31
     */
32
    public const CP_DV = 'DV';
33
34
    /**
35
     * Cenné psaní
36
     */
37
    public const CP_VL = 'VL';
38
39
    /**
40
     * Doporučená zásilka Ekonomická - standard
41
     */
42
    public const CP_SR = 'SR';
43
44
    /**
45
     * Doporučená zásilka Prioritní
46
     */
47
    public const CP_RRP = 'RRP';
48
49
    /**
50
     * Doporučená zásilka Prioritní - standard
51
     */
52
    public const CP_SRP = 'SRP';
53
54
    /**
55
     * Doporučený balíček
56
     */
57
    public const CP_BA = 'BA';
58
59
    /**
60
     * Cenný balík
61
     */
62
    public const CP_BB = 'BB';
63
64
    /**
65
     * Balík nadrozměr
66
     */
67
    public const CP_BN = 'BN';
68
69
    /**
70
     * Balík do balíkovny
71
     */
72
    public const CP_NB = 'NB';
73
74
    /**
75
     * DE balík Do ruky s garantovaným časem dodání
76
     */
77
    public const CP_DT = 'DT';
78
79
    /**
80
     * Balík Do ruky s garantovaným časem dodání v neděli nebo svátek
81
     */
82
    public const CP_DS = 'DS';
83
84
    /**
85
     * EMS expresní přeprava po ČR
86
     */
87
    public const CP_EE = 'EE';
88
89
    /**
90
     * Balík Expres
91
     */
92
    public const CP_BE = 'BE';
93
94
    /**
95
     * RR Doporučená zásilka do zahraničí Prioritní
96
     */
97
    public const CP_RZP = 'RZP';
98
99
    /**
100
     * VL Cenné psaní do zahraničí Prioritní
101
     */
102
    public const CP_VZP = 'VZP';
103
104
    /**
105
     * EMS Expresní přeprava do zahraničí
106
     */
107
    public const CP_EM = 'EM';
108
109
    /**
110
     * CS Standardní balík do zahraničí Prioritní
111
     */
112
    public const CP_CSP = 'CSP';
113
114
    /**
115
     * CS Standardní balík do zahraničí Ekonomický
116
     */
117
    public const CP_CSE = 'CSE';
118
119
    /**
120
     * CV Cenný balík do zahraničí Prioritní
121
     */
122
    public const CP_CVP = 'CVP';
123
124
    /**
125
     * CV Cenný balík do zahraničí Ekonomický
126
     */
127
    public const CP_CVE = 'CVE';
128
129
    /**
130
     * Obchodní balík do zahraničí
131
     */
132
    public const CP_CE = 'CE';
133
134
    /**
135
     * Obyčejná listovní zásilka mezinárodní
136
     */
137
    public const CP_OLZ = 'OLZ';
138
139
    /**
140
     * PPL Parcel Business CZ
141
     */
142
    public const PPL_PARCEL_BUSSINESS_CZ = '1';
143
144
    /**
145
     * PPL Parcel Connect (exportní balík)
146
     */
147
    public const PPL_CONNECT = '2';
148
149
    /**
150
     * PPL Parcel CZ Dopolední balík
151
     */
152
    public const PPL_AFTERNOON = '3';
153
154
    /**
155
     * PPL Parcel CZ Private (soukromý balík)
156
     */
157
    public const PPL_PRIVATE = '4';
158
159
    /**
160
     * PPL Parcel CZ Business (firemní balík)
161
     */
162
    public const PPL_BUSINESS = '8';
163
164
    /**
165
     * PPL Parcel CZ Private - Večerní doručení
166
     */
167
    public const PPL_PRIVATE_EVENING = '9';
168
169
    /**
170
     * PPL Parcel Business Europe
171
     */
172
    public const PPL_BUSINESS_EU = '10';
173
174
    /**
175
     * PPl Parcel Import
176
     */
177
    public const PPL_PARCEL_IMPORT = '11';
178
179
    /**
180
     * PPL Firemní paleta
181
     */
182
    public const PPL_BUSINESS_PALETTE = '15';
183
184
    /**
185
     * PPL Soukromá paleta
186
     */
187
    public const PPL_PRIVATE_PALETTE = '19';
188
189
    /**
190
     * PPL Parcel Return CZ
191
     */
192
    public const PPL_PARCEL_RETURN_CZ = '45';
193
194
    /**
195
     * PPL Smart CZ
196
     */
197
    public const PPL_PRIVATE_SMART_CZ = '46';
198
199
    /**
200
     * PPL Smart Europe
201
     */
202
    public const PPL_PRIVATE_SMART_EU = '48';
203
204
    /**
205
     * PPL Parcel Return Connect
206
     */
207
    public const PPL_RETURN_CONNECT = '50';
208
209
    /**
210
     * DPD Classic
211
     */
212
    public const DPD_CLASSIC = '1';
213
214
    /**
215
     * DPD Private
216
     */
217
    public const DPD_PRIVATE = '2';
218
219
    /**
220
     * DPD Pickup
221
     */
222
    public const DPD_PICKUP = '3';
223
224
    /**
225
     * DPD Expresní doručení do 10:00
226
     */
227
    public const DPD_EXPRESS_10 = '4';
228
229
    /**
230
     * DPD Expresní doručení do 12:00
231
     */
232
    public const DPD_EXPRESS_12 = '5';
233
234
    /**
235
     * DPD Expresní doručení do 18:00
236
     */
237
    public const DPD_EXPRESS_18 = '6';
238
239
    /**
240
     * DPD Private večerní doručení
241
     */
242
    public const DPD_PRIVATE_EVENING = '7';
243
244
    /**
245
     * DPD Private sobotní doručení
246
     */
247
    public const DPD_PRIVATE_SATURDAY = '8';
248
249
    /**
250
     * Vnitrostátní paletová zásilka B2B
251
     */
252
    public const GEIS_CARGO_BUSINESS_NATIONAL = '4';
253
254
    /**
255
     * Mezinárodní paletová zásilka B2B
256
     */
257
    public const GEIS_CARGO_BUSINESS_INTERNATIONAL = '5';
258
259
    /**
260
     * Vnitrostátní paletová zásilka B2C
261
     */
262
    public const GEIS_CARGO_PRIVATE_NATIONAL = '10';
263
264
    /**
265
     * Mezinárodní paletová zásilka B2C
266
     */
267
    public const GEIS_CARGO_PRIVATE_INTERNATIONAL = '11';
268
269
    /**
270
     * Home Delivery Standard
271
     */
272
    public const GEIS_PARCEL_HD_STANDARD = '12';
273
274
    /**
275
     * Home Delivery Premium
276
     */
277
    public const GEIS_PARCEL_HD_PREMIUM = '13';
278
279
    /**
280
     * VIP výnos (B2B)
281
     */
282
    public const GEIS_B2B = '14';
283
284
    /**
285
     * Business Parcel (doručení do ruky)
286
     */
287
    public const GLS_BUSINESS = '1';
288
289
    /**
290
     * ShopDelivery Service (doručení na výdejní místo)
291
     */
292
    public const GLS_SHOP = '2';
293
294
    /**
295
     * Express Parcel (expresní zásilka)
296
     */
297
    public const GLS_EXPRESS = '3';
298
299
    /**
300
     * Guaranteed 24 Service Business Parcel
301
     */
302
    public const GLS_GUARANTEED24 = '4';
303
304
    /**
305
     * "Guaranteed 24 Service Express Parcel
306
     */
307
    public const GLS_GUARANTEED24_EXPRESS = '5';
308
309
    /**
310
     * Guaranteed 24 Service ShopDelivery
311
     */
312
    public const GLS_GUARANTEED24_SHOP = '6';
313
314
    /**
315
     * Small Colli 24-CZ
316
     */
317
    public const INTIME_SMALL_CZ = '1';
318
319
    /**
320
     * Medium Colli 24-CZ
321
     */
322
    public const INTIME_MEDIUM_CZ = '2';
323
324
    /**
325
     * Large Colli 24-CZ
326
     */
327
    public const INTIME_LARGE_CZ = '3';
328
329
    /**
330
     * Poštomat CZ
331
     */
332
    public const INTIME_POSTOMAT_CZ = '4';
333
334
    /**
335
     * Poštomat SK
336
     */
337
    public const INTIME_POSTOMAT_SK = '5';
338
339
    /**
340
     * Large Colli 48-SK
341
     */
342
    public const INTIME_LARGE_SK = '6';
343
344
    /**
345
     * Extra Large Colli 24-CZ
346
     */
347
    public const INTIME_EXTRA_CZ = '7';
348
349
    /**
350
     * Parcel EU
351
     */
352
    public const INTIME_PARCEL_EU = '8';
353
354
    /**
355
     * Parcel EU+
356
     */
357
    public const INTIME_PARCEL_EU_PLUS = '9';
358
359
    /**
360
     * BOXCZ - Výdejní box CZ
361
     */
362
    public const INTIME_BOX_CZ = '10';
363
364
    /**
365
     * BOXSK - Výdejní box SK
366
     */
367
    public const INTIME_BOX_SK = '11';
368
369
    /**
370
     * Extra Large Colli 48-SK - hmotnost do 100 kg
371
     */
372
    public const INTIME_EXTRA_SK_100 = '12';
373
374
    /**
375
     * 2 Extra Large Colli 48-SK - hmotnost do 800 kg
376
     */
377
    public const INTIME_EXTRA_SK_800 = '13';
378
379
    /**
380
     * 2 Extra Large Colli 24-CZ - hmotnost do 800 kg
381
     */
382
    public const INTIME_EXTRA_CZ_800 = '14';
383
384
    /**
385
     * 24 hodin (Standard)
386
     */
387
    public const TOPTRANS_STANDARD = '1';
388
389
    /**
390
     * Toptime
391
     */
392
    public const TOPTRANS_TOPTIME = '2';
393
394
    /**
395
     * Privat
396
     */
397
    public const TOPTRANS_PRIVATE = '3';
398
399
    /**
400
     * Weekend
401
     */
402
    public const TOPTRANS_WEEKEND = '4';
403
404
    /**
405
     * Osobní odběr
406
     */
407
    public const TOPTRANS_PERSONAL = '5';
408
409
    /**
410
     * Po avizaci
411
     */
412
    public const TOPTRANS_NOTICE = '6';
413
414
    /**
415
     * Balík na adresu – zmluvní zákazníci
416
     */
417
    public const SP_BZA = 'BZA';
418
419
    /**
420
     * Balík na poštu – zmluvní zákazníci
421
     */
422
    public const SP_BZP = 'BZP';
423
424
    /**
425
     * Balík do BalíkoBOXu
426
     */
427
    public const SP_BZB = 'BZB';
428
429
    /**
430
     * Expres kuriér na adresu
431
     */
432
    public const SP_EXA = 'EXA';
433
434
    /**
435
     * Expres kuriér na poštu
436
     */
437
    public const SP_EXP = 'EXP';
438
439
    /**
440
     * Expres kuriér do BalíkoBOXu
441
     */
442
    public const SP_EXB = 'EXB';
443
444
    /**
445
     * Balík na adresu
446
     */
447
    public const SP_BNA = 'BNA';
448
449
    /**
450
     * Balík na poštu
451
     */
452
    public const SP_BNP = 'BNP';
453
454
    /**
455
     * Balík do BalíkoBOXu
456
     */
457
    public const SP_BNB = 'BNB';
458
459
    /**
460
     * Doporučený list
461
     */
462
    public const SP_RRA = 'RRA';
463
464
    /**
465
     * Expres (vnitrostátní zásilky)
466
     */
467
    public const SPS_EXPRESS = '1';
468
469
    /**
470
     * Expres do 12:00 (vnitrostátní zásilky)
471
     */
472
    public const SPS_EXPRESS_12 = '2';
473
474
    /**
475
     * Expres do 09:00 (vnitrostátní zásilky)
476
     */
477
    public const SPS_EXPRESS_9 = '3';
478
479
    /**
480
     * Export (mezinárodní zásilky)
481
     */
482
    public const SPS_INTERNATIONAL = '4';
483
484
    /**
485
     * Uloženka
486
     */
487
    public const ULOZENKA_ULOZENKA = '1';
488
489
    /**
490
     * Slovenská pošta
491
     */
492
    public const ULOZENKA_SP = '2';
493
494
    /**
495
     * DPD Classic na Slovensko
496
     */
497
    public const ULOZENKA_DPD_CLASSIC_SK = '3';
498
499
    /**
500
     * DPD Private pro ČR a SK
501
     */
502
    public const ULOZENKA_DPD_PRIVATE = '4';
503
504
    /**
505
     * DPD ParcelShop
506
     */
507
    public const ULOZENKA_DPD_PARCEL = '5';
508
509
    /**
510
     * Balík do ruky – Česká pošta,
511
     */
512
    public const ULOZENKA_CP_DR = '6';
513
514
    /**
515
     * Balík na poštu – Česká pošta
516
     */
517
    public const ULOZENKA_CP_NP = '7';
518
519
    /**
520
     * Partner
521
     */
522
    public const ULOZENKA_PARTNER = '11';
523
524
    /**
525
     * Doručení na adresu D+1
526
     */
527
    public const ULOZENKA_D1 = '17';
528
529
    /**
530
     * Expres Kurýr SK
531
     */
532
    public const ULOZENKA_EXPRESS_COURRIER = '19';
533
534
    /**
535
     * Expres na poštu SK
536
     */
537
    public const ULOZENKA_EXPRESS_SK = '20';
538
539
    /**
540
     * BalíkoBOX SK
541
     */
542
    public const ULOZENKA_BALIKOBOX_SK = '21';
543
544
    /**
545
     * Depo SK
546
     */
547
    public const ULOZENKA_DEPO_SK = '22';
548
549
    /**
550
     * Mall Delivery
551
     */
552
    public const ULOZENKA_MALL_DELIVERY = '100';
553
554
    /**
555
     * Výdejní místa Česká republika
556
     */
557
    public const ZASILKOVNA_VMCZ = 'VMCZ';
558
559
    /**
560
     * Výdejní místa Slovenská republika
561
     */
562
    public const ZASILKOVNA_VMSK = 'VMSK';
563
564
    /**
565
     * Výdejní místa Maďarsko
566
     */
567
    public const ZASILKOVNA_VMHU = 'VMHU';
568
569
    /**
570
     * Výdejní místa Polsko
571
     */
572
    public const ZASILKOVNA_VMPL = 'VMPL';
573
574
    /**
575
     * Výdejní místa Rumunsko
576
     */
577
    public const ZASILKOVNA_VMRO = 'VMRO';
578
579
    /**
580
     * AT Rakouská pošta HD
581
     */
582
    public const ZASILKOVNA_AT_POST_HD = '80';
583
584
    /**
585
     * AT DPD HD
586
     */
587
    public const ZASILKOVNA_AT_DPD_HD = '6830';
588
589
    /**
590
     * BE Belgická pošta PP
591
     */
592
    public const ZASILKOVNA_BE_POST_PP = '7910';
593
594
    /**
595
     * BE Belgická pošta HD
596
     */
597
    public const ZASILKOVNA_BE_POST_HD = '7909';
598
599
    /**
600
     * BE Nizozemská pošta HD
601
     */
602
    public const ZASILKOVNA_BE_NL_POST_HD = '4832';
603
604
    /**
605
     * BG Econt HD
606
     */
607
    public const ZASILKOVNA_BG_ECONT_HD = '19469';
608
609
    /**
610
     * BG Econt PP
611
     */
612
    public const ZASILKOVNA_BG_ECONT_PP = '19471';
613
614
    /**
615
     * BG Speedy PP
616
     */
617
    public const ZASILKOVNA_BG_SPEEDY_PP = '4017';
618
619
    /**
620
     * BG Speedy HD
621
     */
622
    public const ZASILKOVNA_BG_SPEEDY_HD = '4015';
623
624
    /**
625
     * BG Econt Box
626
     */
627
    public const ZASILKOVNA_BG_ECONT_BOX = '19470';
628
629
    /**
630
     * BG Sameday HD
631
     */
632
    public const ZASILKOVNA_BG_SAMEDAY_HD = '26066';
633
634
    /**
635
     * BG Sameday Box
636
     */
637
    public const ZASILKOVNA_BG_SAMEDAY_BOX = '26067';
638
639
    /**
640
     * BG BoxNow Box
641
     */
642
    public const ZASILKOVNA_BG_BOXNOW_BOX = '33777';
643
644
    /**
645
     * GB FedEx HD Connect Plus
646
     */
647
    public const ZASILKOVNA_GB_FEDEX_HD_CONNECT_PLUS = '24808';
648
649
    /**
650
     * GB FedEx HD Priority
651
     */
652
    public const ZASILKOVNA_GB_FEDEX_HD_PRIORITY = '24809';
653
654
    /**
655
     * CY BoxNow Box
656
     */
657
    public const ZASILKOVNA_CY_BOXNOW_BOX = '35369';
658
659
    /**
660
     * CZ Česká pošta HD
661
     */
662
    public const ZASILKOVNA_CZ_POST_HD = '13';
663
664
    /**
665
     * CZ - Nejvýhodnější doručení na adresu
666
     */
667
    public const ZASILKOVNA_CZ_COURIER_HD = '106';
668
669
    /**
670
     * Expresní doručení Praha
671
     */
672
    public const ZASILKOVNA_CZ_EXPRESS_PRAHA_HD = '18928';
673
674
    /**
675
     * Expresní doručení Brno
676
     */
677
    public const ZASILKOVNA_CZ_EXPRESS_BRNO_HD = '136';
678
679
    /**
680
     * Expresní doručení Ostrava
681
     */
682
    public const ZASILKOVNA_CZ_EXPRESS_OSTRAVA_HD = '134';
683
684
    /**
685
     * CZ Doručování do kufru
686
     */
687
    public const ZASILKOVNA_CZ_CAR_TRUNK = '25061';
688
689
    /**
690
     * "CZ Zásilkovna večerní doručení Brno HD
691
     */
692
    public const ZASILKOVNA_CZ_EVENING_BRNO_HD = '26637';
693
694
    /**
695
     * DE Německá pošta DHL HD
696
     */
697
    public const ZASILKOVNA_DE_POST_HD = '111';
698
699
    /**
700
     * Německo Hermes PP
701
     */
702
    public const ZASILKOVNA_DE_HERMES_PP = '6828';
703
704
    /**
705
     * DE Hermes Home
706
     */
707
    public const ZASILKOVNA_DE_HERMES_HD = '6373';
708
709
    /**
710
     * DE Home Delivery HD
711
     */
712
    public const ZASILKOVNA_DE_HOME_DELIVERY_HD = '13613';
713
714
    /**
715
     * DK Post Nord Home
716
     */
717
    public const ZASILKOVNA_DK_POST_NORD_HD = '4993';
718
719
    /**
720
     * DK Post Nord PP
721
     */
722
    public const ZASILKOVNA_DK_POST_NORD_PP = '4994';
723
724
    /**
725
     * DK DAO HD
726
     */
727
    public const ZASILKOVNA_DK_DAO_HD = '9725';
728
729
    /**
730
     * DK DAO PP
731
     */
732
    public const ZASILKOVNA_DK_DAO_PP = '9726';
733
734
    /**
735
     * EE Omniva Home
736
     */
737
    public const ZASILKOVNA_EE_OMNIVA_HD = '5060';
738
739
    /**
740
     * EE Omniva pickup
741
     */
742
    public const ZASILKOVNA_EE_OMNIVA_PP = '5061';
743
744
    /**
745
     * EE Omniva Box
746
     */
747
    public const ZASILKOVNA_EE_OMNIVA_BOX = '5062';
748
749
    /**
750
     * EE Venipak HD
751
     */
752
    public const ZASILKOVNA_EE_VENIPAK_HD = '25980';
753
754
    /**
755
     * EE Venipak PP
756
     */
757
    public const ZASILKOVNA_EE_VENIPAK_PP = '25985';
758
759
    /**
760
     * EE Venipak Box
761
     */
762
    public const ZASILKOVNA_EE_VENIPAK_BOX = '25989';
763
764
    /**
765
     * ES Correos HD
766
     */
767
    public const ZASILKOVNA_ES_CORREOS_HD = '4638';
768
769
    /**
770
     * ES MRW Home
771
     */
772
    public const ZASILKOVNA_ES_MRW_HD = '4653';
773
774
    /**
775
     * ES Envialia HD
776
     */
777
    public const ZASILKOVNA_ES_ENVIALIA_HD = '13851';
778
779
    /**
780
     * ES MRW Pickup Point
781
     */
782
    public const ZASILKOVNA_ES_MRW_PP = '4654';
783
784
    /**
785
     * FI Post Nord Home
786
     */
787
    public const ZASILKOVNA_FI_POST_NORD_HP = '4830';
788
789
    /**
790
     * FI Post Nord Pickup Point
791
     */
792
    public const ZASILKOVNA_FI_POST_NORD_PP = '4828';
793
794
    /**
795
     * FI Matkahuolto HD
796
     */
797
    public const ZASILKOVNA_FI_MATKAHUOLTO_HD = '26985';
798
799
    /**
800
     * FI Matkahuolto PP
801
     */
802
    public const ZASILKOVNA_FI_MATKAHUOLTO_PP = '26986';
803
804
    /**
805
     * FI Matkahuolto BOX
806
     */
807
    public const ZASILKOVNA_FI_MATKAHUOLTO_BOX = '26987';
808
809
    /**
810
     * FR Colis Privé HD
811
     */
812
    public const ZASILKOVNA_FR_COLIS_PRIVE_HD = '4033';
813
814
    /**
815
     * FR Mondial PP
816
     */
817
    public const ZASILKOVNA_FR_MONDIAL_PP = '4876';
818
819
    /**
820
     * Francie Colissimo PP
821
     */
822
    public const ZASILKOVNA_FR_COLISSIMO_PP = '4307';
823
824
    /**
825
     * Francie Colissimo Home
826
     */
827
    public const ZASILKOVNA_FR_COLISSIMO_HD = '4309';
828
829
    /**
830
     * FR Mondial Relay PP
831
     */
832
    public const ZASILKOVNA_FR_MONDIAL_RELAY_PP = '12889';
833
834
    /**
835
     * Fr Colis Privé Direct HD
836
     */
837
    public const ZASILKOVNA_FR_COLIS_PRIVE_DIRECT_HD = '16080';
838
839
    /**
840
     * Spojené království Hermes
841
     */
842
    public const ZASILKOVNA_GB_HERMES_HD = '3885';
843
844
    /**
845
     * Spojené království Royal Mail 24
846
     */
847
    public const ZASILKOVNA_GB_ROYAL_MAIL_24_HD = '4856';
848
849
    /**
850
     * Spojené království Royal Mail 48
851
     */
852
    public const ZASILKOVNA_GB_ROYAL_MAIL_48_HD = '4857';
853
854
    /**
855
     * GR Taxydromiki
856
     */
857
    public const ZASILKOVNA_GR_TAXYDROMIKI = '8847';
858
859
    /**
860
     * GR ACS HD
861
     */
862
    public const ZASILKOVNA_GR_ACS_HD = '17465';
863
864
    /**
865
     * GR ACS PP
866
     */
867
    public const ZASILKOVNA_GR_ACS_PP = '17467';
868
869
    /**
870
     * Recko Speedy Home
871
     */
872
    public const ZASILKOVNA_GR_SPEEDY_HD = '4738';
873
874
    /**
875
     * GR Speedex HD
876
     */
877
    public const ZASILKOVNA_GR_SPEEDEX_HD = '12235';
878
879
    /**
880
     * GR BoxNow Box
881
     */
882
    public const ZASILKOVNA_GR_BOXNOW_BOX = '20409';
883
884
    /**
885
     * GR Elta Courier HD
886
     */
887
    public const ZASILKOVNA_GR_ELTA_COURIER_HD = '27954';
888
889
    /**
890
     * GR Elta Courier PP
891
     */
892
    public const ZASILKOVNA_GR_ELTA_COURIER_PP = '27955';
893
894
    /**
895
     * HR Overseas Express HD
896
     */
897
    public const ZASILKOVNA_HR_OVERSEAS_HD = '10618';
898
899
    /**
900
     * HR Overseas PP
901
     */
902
    public const ZASILKOVNA_HR_OVERSEAS_PP = '10619';
903
904
    /**
905
     * Chorvatsko DPD Home
906
     */
907
    public const ZASILKOVNA_HR_DPD_HD = '4646';
908
909
    /**
910
     * Chorvatská Pošta - Výdejní místo
911
     */
912
    public const ZASILKOVNA_HR_POST_PP = '4635';
913
914
    /**
915
     * Chorvatská Pošta - doručení na adresu
916
     */
917
    public const ZASILKOVNA_HR_POST_HD = '4634';
918
919
    /**
920
     * HR BoxNow Box
921
     */
922
    public const ZASILKOVNA_HR_BOXNOW_BOX = '35319';
923
924
    /**
925
     * Maďarsko Express One (Transoflex)
926
     */
927
    public const ZASILKOVNA_HU_EXPRESS_ONE_HD = '3828';
928
929
    /**
930
     * Maďarsko DPD
931
     */
932
    public const ZASILKOVNA_HU_DPD_HD = '805';
933
934
    /**
935
     * HU - best delivery solution
936
     */
937
    public const ZASILKOVNA_HU_COURIER_HD = '4159';
938
939
    /**
940
     * Maďarská pošta
941
     */
942
    public const ZASILKOVNA_HU_POST_HD = '763';
943
944
    /**
945
     * Maďarská pošta PP
946
     */
947
    public const ZASILKOVNA_HU_POST_PP = '4539';
948
949
    /**
950
     * Maďarská pošta Box
951
     */
952
    public const ZASILKOVNA_HU_POST_BOX = '29760';
953
954
    /**
955
     * HU Fáma Futár HD
956
     */
957
    public const ZASILKOVNA_HU_FAMA_FUTAR_HD = '10061';
958
959
    /*
960
     * HU FoxPost BOX
961
     */
962
    public const ZASILKOVNA_HU_FOXPOST_BOX = '32970';
963
964
    /**
965
     * Švýcarsko-Lichtenštejnská Pošta - prioritní
966
     */
967
    public const ZASILKOVNA_CH_POST_PRIORITY_HD = '3870';
968
969
    /**
970
     * Švýcarsko-Lichtejnštejnská Pošta
971
     */
972
    public const ZASILKOVNA_CH_POST_HD = '3294';
973
974
    /**
975
     * Irsko Hermes
976
     */
977
    public const ZASILKOVNA_IE_HERMES_HD = '4524';
978
979
    /**
980
     * IE Anpost HD
981
     */
982
    public const ZASILKOVNA_IE_ANPOST_HD = '9990';
983
984
    /**
985
     * IE FedEx HD Connect Plus
986
     */
987
    public const ZASILKOVNA_IE_FEDEX_HD_CONNECT_PLUS = '24810';
988
989
    /**
990
     * IE FedEx HD Priority
991
     */
992
    public const ZASILKOVNA_IE_FEDEX_HD_PRIORITY = '24811';
993
994
    /**
995
     * IT Bartolini Home
996
     */
997
    public const ZASILKOVNA_IT_BARTOLINI_HD = '9103';
998
999
    /**
1000
     * IT Bartolini PP
1001
     */
1002
    public const ZASILKOVNA_IT_BARTOLINI_PP = '9104';
1003
1004
    /**
1005
     * IT Italská pošta PP
1006
     */
1007
    public const ZASILKOVNA_IT_POST_PP = '29660';
1008
1009
    /**
1010
     * IT Bartolini Box
1011
     */
1012
    public const ZASILKOVNA_IT_BARTOLINI_BOX = '29678';
1013
1014
    /**
1015
     * Itálie GLS
1016
     */
1017
    public const ZASILKOVNA_IT_GLS_HD = '2726';
1018
1019
    /**
1020
     * IT HR Parcel HD
1021
     */
1022
    public const ZASILKOVNA_IT_HR_PARCEL_HD = '12154';
1023
1024
    /**
1025
     * IT Italská pošta HD
1026
     */
1027
    public const ZASILKOVNA_IT_POST_HD = '29192';
1028
1029
    /**
1030
     * LT Omniva Box
1031
     */
1032
    public const ZASILKOVNA_LT_OMNIVA_BOX = '5066';
1033
1034
    /**
1035
     * LT Omniva Home
1036
     */
1037
    public const ZASILKOVNA_LT_OMNIVA_HD = '5065';
1038
1039
    /**
1040
     * LU Lucemburská pošta HD
1041
     */
1042
    public const ZASILKOVNA_LU_POST_HD = '8125';
1043
1044
    /**
1045
     * LU DPD
1046
     */
1047
    public const ZASILKOVNA_LU_DPD_HD = '4834';
1048
1049
    /**
1050
     * LV Omniva Box
1051
     */
1052
    public const ZASILKOVNA_LV_OMNIVA_BOX = '5064';
1053
1054
    /**
1055
     * LV Omniva Home
1056
     */
1057
    public const ZASILKOVNA_LV_OMNIVA_HD = '5063';
1058
1059
    /**
1060
     * LV Venipak HD
1061
     */
1062
    public const ZASILKOVNA_LV_VENIPAK_HD = '25981';
1063
1064
    /**
1065
     * LV Venipak PP
1066
     */
1067
    public const ZASILKOVNA_LV_VENIPAK_PP = '25987';
1068
1069
    /**
1070
     * LV Venipak Box
1071
     */
1072
    public const ZASILKOVNA_LV_VENIPAK_BOX = '25990';
1073
1074
    /**
1075
     * NL DHL HD
1076
     */
1077
    public const ZASILKOVNA_NL_DHL_HD = '8000';
1078
1079
    /**
1080
     * NL Post
1081
     */
1082
    public const ZASILKOVNA_NL_POST_HD = '4329';
1083
1084
    /**
1085
     * NL DHL PP
1086
     */
1087
    public const ZASILKOVNA_NL_DHL_PP = '8001';
1088
1089
    /**
1090
     * Polská pošta 24h
1091
     */
1092
    public const ZASILKOVNA_PL_POST_24_HD = '1438';
1093
1094
    /**
1095
     * Polská pošta
1096
     */
1097
    public const ZASILKOVNA_PL_POST_48_HD = '272';
1098
1099
    /**
1100
     * Polsko DPD
1101
     */
1102
    public const ZASILKOVNA_PL_DPD_HD = '1406';
1103
1104
    /**
1105
     * PL - best delivery solution
1106
     */
1107
    public const ZASILKOVNA_PL_COURIER_HD = '4162';
1108
1109
    /**
1110
     * PL Polská pošta PP
1111
     */
1112
    public const ZASILKOVNA_PL_POST_PP = '14052';
1113
1114
    /**
1115
     * Polsko Paczkomaty
1116
     */
1117
    public const ZASILKOVNA_PL_INPOST_PACZKOMATY_BOX = '3060';
1118
1119
    /**
1120
     * Polsko InPost
1121
     */
1122
    public const ZASILKOVNA_PL_INPOST_HD = '3603';
1123
1124
    /**
1125
     * PT MRW Home
1126
     */
1127
    public const ZASILKOVNA_PT_MRW_HD = '4655';
1128
1129
    /**
1130
     * PT MRW PP
1131
     */
1132
    public const ZASILKOVNA_PT_MRW_PP = '4656';
1133
1134
    /**
1135
     * RO - best delivery solution
1136
     */
1137
    public const ZASILKOVNA_RO_COURIER_HD = '4161';
1138
1139
    /**
1140
     * Rumunsko Cargus
1141
     */
1142
    public const ZASILKOVNA_RO_URGENT_CARGUS_HD = '590';
1143
1144
    /**
1145
     * Rumunsko Sameday box
1146
     */
1147
    public const ZASILKOVNA_RO_SAMEDAY_BOX = '7455';
1148
1149
    /**
1150
     * Rumunsko DPD
1151
     */
1152
    public const ZASILKOVNA_RO_DPD_HD = '836';
1153
1154
    /**
1155
     * Rumunsko Sameday HD
1156
     */
1157
    public const ZASILKOVNA_RO_SAMEDAY_HD = '7397';
1158
1159
    /**
1160
     * Rumunsko FAN
1161
     */
1162
    public const ZASILKOVNA_RO_FAN_COURIER_HD = '762';
1163
1164
    /**
1165
     * Rumunsko FAN box
1166
     */
1167
    public const ZASILKOVNA_RO_FAN_BOX = '32428';
1168
1169
    /**
1170
     * Ruská pošta
1171
     */
1172
    public const ZASILKOVNA_RU_POST_PP = '4559';
1173
1174
    /**
1175
     * RU Post Registered Packet
1176
     */
1177
    public const ZASILKOVNA_RU_POST_RECOMMENDED_PP = '5102';
1178
1179
    /**
1180
     * RU Post EMS
1181
     */
1182
    public const ZASILKOVNA_RU_EMS_HD = '5101';
1183
1184
    /**
1185
     * SE Post Nord pp
1186
     */
1187
    public const ZASILKOVNA_SE_POST_NORD_PP = '4826';
1188
1189
    /**
1190
     * SE Post Nord Home
1191
     */
1192
    public const ZASILKOVNA_SE_POST_NORD_HD = '4827';
1193
1194
    /**
1195
     * SI DPD Home
1196
     */
1197
    public const ZASILKOVNA_SI_DPD_HD = '4949';
1198
1199
    /**
1200
     * SI DPD Pickup
1201
     */
1202
    public const ZASILKOVNA_SI_DPD_PP = '4950';
1203
1204
    /**
1205
     * SI Post HD
1206
     */
1207
    public const ZASILKOVNA_SI_POST_HD = '19515';
1208
1209
    /**
1210
     * SI Post PP
1211
     */
1212
    public const ZASILKOVNA_SI_POST_PP = '19516';
1213
1214
    /**
1215
     * SI Post Box
1216
     */
1217
    public const ZASILKOVNA_SI_POST_BOX = '19517';
1218
1219
    /**
1220
     * SI Express One HD
1221
     */
1222
    public const ZASILKOVNA_SI_EXPRESS_ONE_HD = '25004';
1223
1224
    /**
1225
     * SI Express One PP
1226
     */
1227
    public const ZASILKOVNA_SI_EXPRESS_ONE_PP = '25005';
1228
1229
    /**
1230
     * Expresné doručenie Bratislava
1231
     */
1232
    public const ZASILKOVNA_SK_EXPRESS_BRATISLAVA_HD = '132';
1233
1234
    /**
1235
     * SK - Best delivery solution
1236
     */
1237
    public const ZASILKOVNA_SK_COURIER_HD = '131';
1238
1239
    /**
1240
     * Slovenská pošta
1241
     */
1242
    public const ZASILKOVNA_SK_POST_HD = '16';
1243
1244
    /**
1245
     * Ukrajina Nova Poshta
1246
     */
1247
    public const ZASILKOVNA_UA_NOVA_POSHTA_PP = '3616';
1248
1249
    /**
1250
     * Ukrajina Rosan
1251
     */
1252
    public const ZASILKOVNA_UA_ROSAN_HD = '1160';
1253
1254
    /**
1255
     * US FedEx HD Economy
1256
     */
1257
    public const ZASILKOVNA_US_FEDEX_ECONOMY_HD = '19326';
1258
1259
    /**
1260
     * US FedEx HD Priority
1261
     */
1262
    public const ZASILKOVNA_US_FEDEX_PRIORITY_HD = '19325';
1263
1264
    /**
1265
     * TR FedEx HD Economy
1266
     */
1267
    public const ZASILKOVNA_TR_FEDEX_ECONOMY_HD = '19327';
1268
1269
    /**
1270
     * TR FedEx HD Priority
1271
     */
1272
    public const ZASILKOVNA_TR_FEDEX_PRIORITY_HD = '19328';
1273
1274
    /**
1275
     * IL FedEx HD Priority
1276
     */
1277
    public const ZASILKOVNA_IL_FEDEX_PRIORITY_HD = '19329';
1278
1279
    /**
1280
     * IL FedEx HD Economy
1281
     */
1282
    public const ZASILKOVNA_IL_FEDEX_ECONOMY_HD = '19330';
1283
1284
    /**
1285
     * EE Lithuanian Post HD
1286
     */
1287
    public const ZASILKOVNA_EE_LT_POST_HD = '18805';
1288
1289
    /**
1290
     * LV Lithuanian Post HD
1291
     */
1292
    public const ZASILKOVNA_LV_LT_POST_HD = '18807';
1293
1294
    /**
1295
     * LT Lithuanian Post HD
1296
     */
1297
    public const ZASILKOVNA_LT_POST_HD = '18808';
1298
1299
    /**
1300
     * LT Lithuanian Post Box
1301
     */
1302
    public const ZASILKOVNA_LT_POST_BOX = '18809';
1303
1304
    /**
1305
     * LT Venipak HD
1306
     */
1307
    public const ZASILKOVNA_LT_VENIPAK_HD = '25982';
1308
1309
    /**
1310
     * LT Venipak PP
1311
     */
1312
    public const ZASILKOVNA_LT_VENIPAK_PP = '25988';
1313
1314
    /**
1315
     * LT Venipak Box
1316
     */
1317
    public const ZASILKOVNA_LT_VENIPAK_BOX = '25992';
1318
1319
    /**
1320
     * DHL
1321
     */
1322
    public const PBH_DHL = '1';
1323
1324
    /**
1325
     * GLS
1326
     */
1327
    public const PBH_GLS = '2';
1328
1329
    /**
1330
     * SPS
1331
     */
1332
    public const PBH_SPS = '3';
1333
1334
    /**
1335
     * Slovenská pošta
1336
     */
1337
    public const PBH_SP = '4';
1338
1339
    /**
1340
     * Transoflex
1341
     */
1342
    public const PBH_TRANSOFLEX = '5';
1343
1344
    /**
1345
     * Maďarská pošta
1346
     */
1347
    public const PBH_MP = '6';
1348
1349
    /**
1350
     * Cargus
1351
     */
1352
    public const PBH_CARGUS = '7';
1353
1354
    /**
1355
     * Rakouská pošta
1356
     */
1357
    public const PBH_RP = '8';
1358
1359
    /**
1360
     * Česká pošta – Balík do ruky
1361
     */
1362
    public const PBH_CP_DR = '9';
1363
1364
    /**
1365
     * Česká pošta – Balík na poštu
1366
     */
1367
    public const PBH_CP_NP = '10';
1368
1369
    /**
1370
     * PPL
1371
     */
1372
    public const PBH_PPL = '11';
1373
1374
    /**
1375
     * DPD
1376
     */
1377
    public const PBH_DPD = '12';
1378
1379
    /**
1380
     * Polská pošta
1381
     */
1382
    public const PBH_PP = '13';
1383
1384
    /**
1385
     * Polský Inpost Kurier
1386
     */
1387
    public const PBH_INPOST_KURIER = '14';
1388
1389
    /**
1390
     * FAN Courier
1391
     */
1392
    public const PBH_FAN_KURIER = '15';
1393
1394
    /**
1395
     * Hermes
1396
     */
1397
    public const PBH_HERMES = '16';
1398
1399
    /**
1400
     * Speedy
1401
     */
1402
    public const PBH_SPEEDY = '17';
1403
1404
    /**
1405
     * Colissimo
1406
     */
1407
    public const PBH_COLISSIMO = '18';
1408
1409
    /**
1410
     * Meest
1411
     */
1412
    public const PBH_MEEST = '19';
1413
1414
    /**
1415
     * Nova Poshta
1416
     */
1417
    public const PBH_NOBA_POSHTA = '20';
1418
1419
    /**
1420
     * Econt
1421
     */
1422
    public const PBH_ECONT = '21';
1423
1424
    /**
1425
     * ACS
1426
     */
1427
    public const PBH_ACS = '22';
1428
1429
    /**
1430
     * Correos
1431
     */
1432
    public const PBH_CORREOS = '23';
1433
1434
    /**
1435
     * 123 Kuriér
1436
     */
1437
    public const PBH_123_KURIER = '24';
1438
1439
    /**
1440
     * RoyalMail 24h
1441
     */
1442
    public const PBH_ROYAL_MAIL_24 = '25';
1443
1444
    /**
1445
     * RoyalMail 48h
1446
     */
1447
    public const PBH_ROYAL_MAIL_48 = '26';
1448
1449
    /**
1450
     * Express one
1451
     */
1452
    public const PBH_EXPRESS_ONE = '27';
1453
1454
    /**
1455
     * Express UPS
1456
     */
1457
    public const PBH_UPS = '28';
1458
1459
    /**
1460
     * Warenpost
1461
     */
1462
    public const PBH_WARENPOST = '29';
1463
1464
    /**
1465
     * Chorvatská pošta
1466
     */
1467
    public const PBH_HR_POST = '30';
1468
1469
    /**
1470
     * BOX NOW
1471
     */
1472
    public const PBH_BOX_NOW = '31';
1473
1474
    /**
1475
     * Slovinská pošta
1476
     */
1477
    public const PBH_SI = '32';
1478
1479
    /**
1480
     * Itella
1481
     */
1482
    public const PBH_ITELLA = '33';
1483
1484
    /**
1485
     * Česká pošta - Balík do balíkovny"
1486
     */
1487
    public const PBH_CP_NB = '34';
1488
1489
    /**
1490
     * Worlwide zásilky
1491
     */
1492
    public const DHL_WORLDWIDE = '1';
1493
1494
    /**
1495
     * Express Worldwide dokumenty
1496
     */
1497
    public const DHL_EXPRESS_DOCUMENTS = '2';
1498
1499
    /**
1500
     * Express Worldwide 9:00
1501
     */
1502
    public const DHL_EXPRESS_WORLDWIDE_9 = '3';
1503
1504
    /**
1505
     * Express Worldwide 12:00
1506
     */
1507
    public const DHL_EXPRESS_WORLDWIDE_12 = '4';
1508
1509
    /**
1510
     * Economy Select
1511
     */
1512
    public const DHL_ECONOMY = '5';
1513
1514
    /**
1515
     * Domestic Express 12:00
1516
     */
1517
    public const DHL_DOMESTIC_12 = '6';
1518
1519
    /**
1520
     * Domestic Express
1521
     */
1522
    public const DHL_DOMESTIC_EXPRESS = '7';
1523
1524
    /**
1525
     * Medical Express
1526
     */
1527
    public const DHL_MEDICAL_EXPRESS = '8';
1528
1529
    /**
1530
     * Express
1531
     */
1532
    public const UPS_EXPRESS = '1';
1533
1534
    /**
1535
     * Express Saver
1536
     */
1537
    public const UPS_EXPRESS_SAVER = '2';
1538
1539
    /**
1540
     * Standard
1541
     */
1542
    public const UPS_STANDARD = '3';
1543
1544
    /**
1545
     * Expedited
1546
     */
1547
    public const UPS_EXPEDITED = '4';
1548
1549
    /**
1550
     * Express
1551
     */
1552
    public const TNT_EXPRESS = '1';
1553
1554
    /**
1555
     * Express 9:00
1556
     */
1557
    public const TNT_EXPRESS_9 = '2';
1558
1559
    /**
1560
     * Express 12:00
1561
     */
1562
    public const TNT_EXPRESS_12 = '3';
1563
1564
    /**
1565
     * Economy Express
1566
     */
1567
    public const TNT_ECONOMY_EXPRESS = '4';
1568
1569
    /**
1570
     * Night Express 8:00
1571
     */
1572
    public const TNT_NIGHT_EXPRESS_8 = '5';
1573
1574
    /**
1575
     * Economy Express 12:00
1576
     */
1577
    public const TNT_ECONOMY_EXPRESS_12 = '6';
1578
1579
    /**
1580
     * Express 10:00
1581
     */
1582
    public const TNT_EXPRESS_10 = '7';
1583
1584
    /**
1585
     * Express (Documents)
1586
     */
1587
    public const TNT_EXPRESS_DOCUMENTS = '8';
1588
1589
    /**
1590
     * Express 9:00 (Documents)
1591
     */
1592
    public const TNT_EXPRESS_DOCUMENTS_9 = '9';
1593
1594
    /**
1595
     * Express 10:00 (Documents)
1596
     */
1597
    public const TNT_EXPRESS_DOCUMENTS_10 = '10';
1598
1599
    /**
1600
     * Express 12:00 (Documents)
1601
     */
1602
    public const TNT_EXPRESS_DOCUMENTS_12 = '11';
1603
1604
    /**
1605
     * Night Express 12:00
1606
     */
1607
    public const TNT_NIGHT_EXPRESS_12 = '12';
1608
1609
    /**
1610
     * Night Express 06:00
1611
     */
1612
    public const TNT_NIGHT_EXPRESS_6 = '13';
1613
1614
    /**
1615
     * Night Express 07:00
1616
     */
1617
    public const TNT_NIGHT_EXPRESS_7 = '14';
1618
1619
    /**
1620
     * Night Express 14:00
1621
     */
1622
    public const TNT_NIGHT_EXPRESS_14 = '15';
1623
1624
    /**
1625
     * Special economy express
1626
     */
1627
    public const TNT_SPECIAL_ECONOMY_EXPRESS = '16';
1628
1629
    /**
1630
     * Direct Infeed
1631
     */
1632
    public const TNT_DIRECT_INFEED = '17';
1633
1634
    /**
1635
     * Priority Goods 9:00
1636
     */
1637
    public const GW_PRIORITY_9 = 'P9';
1638
1639
    /**
1640
     * Priority Goods 12:00
1641
     */
1642
    public const GW_PRIORITY_12 = 'P12';
1643
1644
    /**
1645
     * Priority Goods 16:00
1646
     */
1647
    public const GW_PRIORITY_16 = 'P16';
1648
1649
    /**
1650
     * Direct Goods
1651
     */
1652
    public const GW_DIRECT_GOODS = 'WDG';
1653
1654
    /**
1655
     * Pick Up
1656
     */
1657
    public const GW_PICKUP = 'BES';
1658
1659
    /**
1660
     * Pickup by Consignee
1661
     */
1662
    public const GW_PICKUP_BY_CONSIGNEE = 'SA';
1663
1664
    /**
1665
     * Domestic PRON
1666
     */
1667
    public const GW_DOMESTIC = 'W24';
1668
1669
    /**
1670
     * HDS - Home Delivery Services
1671
     */
1672
    public const GW_HOME_DELIVERY = 'HDS';
1673
1674
    /**
1675
     * Export PROI
1676
     */
1677
    public const GW_EXPORT = 'EUR';
1678
1679
    /**
1680
     * Domestic PRON
1681
     */
1682
    public const GW_W24 = 'W24';
1683
1684
    /**
1685
     * Domestic 8:00 - 12:00
1686
     */
1687
    public const GW_D8 = 'D8';
1688
1689
    /**
1690
     * Domestic 12:00 - 14:00
1691
     */
1692
    public const GW_D12 = 'D12';
1693
1694
    /**
1695
     * Domestic 14:00 - 18:00
1696
     */
1697
    public const GW_D14 = 'D14';
1698
1699
    /**
1700
     * Export PROI
1701
     */
1702
    public const GW_EUR = 'EUR';
1703
1704
    /**
1705
     * Standard
1706
     */
1707
    public const MESSENGER_STANDARD = '100';
1708
1709
    /**
1710
     * Extreme
1711
     */
1712
    public const MESSENGER_EXTREME = '102';
1713
1714
    /**
1715
     * Express
1716
     */
1717
    public const MESSENGER_EXPRESS = '103';
1718
1719
    /**
1720
     * Same day
1721
     */
1722
    public const MESSENGER_SAME_DAY = '104';
1723
1724
    /**
1725
     * Overnight Economy
1726
     */
1727
    public const MESSENGER_OVERNIGHT_ECONOMY = '106';
1728
1729
    /**
1730
     * Overnight Express
1731
     */
1732
    public const MESSENGER_OVERNIGHT_EXPRESS = '107';
1733
1734
    /**
1735
     * Direct
1736
     */
1737
    public const MESSENGER_DIRECT = '108';
1738
1739
    /**
1740
     * Economy (Brno)
1741
     */
1742
    public const MESSENGER_ECONOMY_BRNO = '114';
1743
1744
    /**
1745
     * Praha – 9-13h
1746
     */
1747
    public const MESSENGER_PRAGUE_09_13 = '205';
1748
1749
    /**
1750
     * Praha – 13-17h
1751
     */
1752
    public const MESSENGER_PRAGUE_13_17 = '206';
1753
1754
    /**
1755
     * Praha – 17-21h
1756
     */
1757
    public const MESSENGER_PRAGUE_17_21 = '207';
1758
1759
    /**
1760
     * DHL Paket
1761
     */
1762
    public const DHLDE_PAKET = '1';
1763
1764
    /**
1765
     * DHL Paket Taggleich
1766
     */
1767
    public const DHLDE_PAKET_TAGGLEICH = '2';
1768
1769
    /**
1770
     * DHL Paket International
1771
     */
1772
    public const DHLDE_PAKET_INTERNATIONAL = '3';
1773
1774
    /**
1775
     * DHL Europaket
1776
     */
1777
    public const DHLDE_EUROPAKET = '4';
1778
1779
    /**
1780
     * DHL Paket Connect
1781
     */
1782
    public const DHLDE_PAKET_CONNECT = '5';
1783
1784
    /**
1785
     * DHL Warenpost Domestic
1786
     */
1787
    public const DHLDE_WARENPOST_DOMESTIC = '6';
1788
1789
    /**
1790
     * DHL Warenpost International
1791
     */
1792
    public const DHLDE_WARENPOST_INTERNATIONAL = '7';
1793
1794
    /**
1795
     * FedEx International Priority
1796
     */
1797
    public const FEDEX_INTERNATIONAL = '1';
1798
1799
    /**
1800
     * FedEx International Economy
1801
     */
1802
    public const FEDEX_ECONOMY = '2';
1803
1804
    /**
1805
     * FedEx International First
1806
     */
1807
    public const FEDEX_INTERNATIONAL_FIRST = '3';
1808
1809
    /**
1810
     * FedEx International Priority Express
1811
     */
1812
    public const FEDEX_INTERNATIONAL_PRIORITY_EXPRESS = '4';
1813
1814
    /**
1815
     * FedEx International Priority
1816
     */
1817
    public const FEDEX_INTERNATIONAL_PRIORITY = '5';
1818
1819
    /**
1820
     * FedEx FedEx Regional Economy
1821
     */
1822
    public const FEDEX_REGIONAL_ECONOMY = '6';
1823
1824
    /**
1825
     * FedEx International Priority Freight
1826
     */
1827
    public const FEDEX_INTERNATIONAL_PRIORITY_FREIGHT = '7';
1828
1829
    /**
1830
     * FedEx International Economy Freight
1831
     */
1832
    public const FEDEX_INTERNATIONAL_ECONOMY_FREIGHT = '8';
1833
1834
    /**
1835
     * FedEx Fedex Regional Economy Freight
1836
     */
1837
    public const FEDEX_REGIONAL_ECONOMY_FREIGHT = '9';
1838
1839
    /**
1840
     * FedEx International Connect Plus
1841
     */
1842
    public const FEDEX_INTERNATIONAL_CONNECT_PLUS = '10';
1843
1844
    /**
1845
     * FedEx Priority Overnight
1846
     */
1847
    public const FEDEX_PRIORITY_OVERNIGHT = '11';
1848
1849
    /**
1850
     * FedEx First
1851
     */
1852
    public const FEDEX_FIRST = '65';
1853
1854
    /**
1855
     * FedEx Priority Express
1856
     */
1857
    public const FEDEX_PRIORITY_EXPRESS = '66';
1858
1859
    /**
1860
     * FedEx Priority
1861
     */
1862
    public const FEDEX_PRIORITY = '67';
1863
1864
    /**
1865
     * FedEx Priority Express Freight
1866
     */
1867
    public const FEDEX_REGIONAL_EXPRESS_FREIGHT = '68';
1868
1869
    /**
1870
     * FedEx Priority Freight
1871
     */
1872
    public const FEDEX_REGIONAL_REIGHT = '69';
1873
1874
    /**
1875
     * Fofr
1876
     */
1877
    public const FOFR_FOFR = 'F';
1878
1879
    /**
1880
     * Fofr Economy
1881
     */
1882
    public const FOFR_ECONOMY = 'C';
1883
1884
    /**
1885
     * Fofr Balíková přeprava
1886
     */
1887
    public const FOFR_PARCEL = 'B';
1888
1889
    /**
1890
     * Fofr Paletová přeprava
1891
     */
1892
    public const FOFR_PALETTE = 'P';
1893
1894
    /**
1895
     * Fofr Nadrozměrná zásilka
1896
     */
1897
    public const FOFR_OVERSIZED = 'N';
1898
1899
    /**
1900
     * Fofr Slovensko
1901
     */
1902
    public const FOFR_SK = 'S';
1903
1904
    /**
1905
     * Fofr Zahraničí
1906
     */
1907
    public const FOFR_ABROAD = 'Z';
1908
1909
    /**
1910
     * Dachser Targospeed
1911
     */
1912
    public const DACHSER_SPEED = 'Z';
1913
1914
    /**
1915
     * Dachser Targospeed 10
1916
     */
1917
    public const DACHSER_SPEED_10 = 'S';
1918
1919
    /**
1920
     * Dachser Targospeed 12
1921
     */
1922
    public const DACHSER_SPEED_12 = 'E';
1923
1924
    /**
1925
     * Dachser Targospeed plux
1926
     */
1927
    public const DACHSER_SPEED_PLUS = 'X';
1928
1929
    /**
1930
     * Dachser Targofix
1931
     */
1932
    public const DACHSER_FIX = 'V';
1933
1934
    /**
1935
     * Dachser Targofix 10
1936
     */
1937
    public const DACHSER_FIX_10 = 'R';
1938
1939
    /**
1940
     * Dachser Targofix 12
1941
     */
1942
    public const DACHSER_FIX_12 = 'W';
1943
1944
    /**
1945
     * Dachser Targoflex
1946
     */
1947
    public const DACHSER_FLEX = 'Y';
1948
1949
    /**
1950
     * Dachser Targo on-site
1951
     */
1952
    public const DACHSER_ONSITE = 'A';
1953
1954
    /**
1955
     * Dachser classicline
1956
     */
1957
    public const DACHSER_CLASSIC = 'N';
1958
1959
    /**
1960
     * Dachser Targo on-site FIX
1961
     */
1962
    public const DACHSER_ONSITE_FIX = 'U';
1963
1964
    /**
1965
     * DHL Parcel Connect
1966
     */
1967
    public const DHLPARCEL_CONNECT = '1';
1968
1969
    /**
1970
     * Raben Cargo Classic
1971
     */
1972
    public const RABEN_CLASSIC = 'PROD01';
1973
1974
    /**
1975
     * Raben Cargo Classic - Time slot
1976
     */
1977
    public const RABEN_CLASSIC_TIME = 'PROD01-RTS';
1978
1979
    /**
1980
     * Raben Cargo Premium
1981
     */
1982
    public const RABEN_PREMIUM = 'PROD02';
1983
1984
    /**
1985
     * Raben Cargo Premium - Time slot
1986
     */
1987
    public const RABEN_PREMIUM_TIME = 'PROD02-RTS';
1988
1989
    /**
1990
     * Raben Cargo Premium - Delivery till 12:00 p
1991
     */
1992
    public const RABEN_PREMIUM_12 = 'PROD02-ND12';
1993
1994
    /**
1995
     * Raben Cargo Premium - Fixed date
1996
     */
1997
    public const RABEN_PREMIUM_FIX = 'PROD02-FIX';
1998
1999
    /**
2000
     * Spring Tracked
2001
     */
2002
    public const SPRING_TRACKED = 'TRCK';
2003
2004
    /**
2005
     * Spring Signatured
2006
     */
2007
    public const SPRING_SIGNATURED = 'SIGN';
2008
2009
    /**
2010
     * Spring Untracked
2011
     */
2012
    public const SPRING_UNTRACKED = 'UNTR';
2013
2014
    /**
2015
     * DSV Road
2016
     */
2017
    public const DSV_ROAD = 'road';
2018
2019
    /**
2020
     * DSV B2C
2021
     */
2022
    public const DSV_B2C = 'b2c';
2023
2024
    /**
2025
     * DHLFREIGHTEC EuroConnect Domestic B2B
2026
     */
2027
    public const DHLFREIGHTEC_ECD_B2B = 'ECD_B2B';
2028
2029
    /**
2030
     * DHLFREIGHTEC EuroConnect Domestic B2C
2031
     */
2032
    public const DHLFREIGHTEC_ECD_B2C = 'ECD_B2C';
2033
2034
    /**
2035
     * DHLFREIGHTEC EuroConnect International
2036
     */
2037
    public const DHLFREIGHTEC_ECI = 'ECI';
2038
2039
    /**
2040
     * DHLFREIGHTEC EuroLine Domestic
2041
     */
2042
    public const DHLFREIGHTEC_ELD = 'ELD';
2043
2044
    /**
2045
     * DHLFREIGHTEC EuroLine International
2046
     */
2047
    public const DHLFREIGHTEC_ELI = 'ELI';
2048
2049
    /**
2050
     * DHLFREIGHTEC EuroRapid International
2051
     */
2052
    public const DHLFREIGHTEC_ERI = 'ERI';
2053
2054
    /**
2055
     * KURIER Garantované doručení
2056
     */
2057
    public const KURIER_GARANTED = 'gdd';
2058
2059
    /**
2060
     * KURIER Garantované doručení na výdejní místo
2061
     */
2062
    public const KURIER_GARANTED_BRANCH = 'gdd_branch';
2063
2064
    /**
2065
     * KURIER Doručení do 12h
2066
     */
2067
    public const KURIER_12 = 'd12';
2068
2069
    /**
2070
     * KURIER Standard
2071
     */
2072
    public const KURIER_STANDARD = 'std';
2073
2074
    /**
2075
     * KURIER Standard na výdejní místo
2076
     */
2077
    public const KURIER_STANDARD_BRANCH = 'std_branch';
2078
2079
    /**
2080
     * DB Schenker System FIX
2081
     */
2082
    public const DBSCHENKER_SYSTEM_FIX = '35';
2083
2084
    /**
2085
     * DB Schenker System FIX TBA
2086
     */
2087
    public const DBSCHENKER_SYSTEM_FIX_TBA = '39';
2088
2089
    /**
2090
     * DB Schenker System
2091
     */
2092
    public const DBSCHENKER_SYSTEM = '43';
2093
2094
    /**
2095
     * DB Schenker System Premium
2096
     */
2097
    public const DBSCHENKER_SYSTEM_PREMIUM = '44';
2098
2099
    /**
2100
     * DB Schenker System Premium 10
2101
     */
2102
    public const DBSCHENKER_SYSTEM_PREMIUM_10 = '55';
2103
2104
    /**
2105
     * DB Schenker System Premium 13
2106
     */
2107
    public const DBSCHENKER_SYSTEM_PREMIUM_13 = '56';
2108
2109
    /**
2110
     * DB Schenker System FIX 10
2111
     */
2112
    public const DBSCHENKER_SYSTEM_FIX_10 = '57';
2113
2114
    /**
2115
     * DB Schenker System FIX 13
2116
     */
2117
    public const DBSCHENKER_SYSTEM_FIX_13 = '58';
2118
2119
    /**
2120
     * DB Schenker Full Load
2121
     */
2122
    public const DBSCHENKER_FULL_LOAD = '71';
2123
2124
    /**
2125
     * DB Schenker Part Load
2126
     */
2127
    public const DBSCHENKER_PART_LOAD = '72';
2128
2129
    /**
2130
     * DB Schenker Parcel
2131
     */
2132
    public const DBSCHENKER_LPA = 'LPA';
2133
2134
    /**
2135
     * Airway Express
2136
     */
2137
    public const AIRWAY_EXPRESS = '1';
2138
2139
    /**
2140
     * Airway Normal
2141
     */
2142
    public const AIRWAY_NORMAL = '2';
2143
2144
    /**
2145
     * Airway Economy
2146
     */
2147
    public const AIRWAY_ECONOMY = '3';
2148
2149
    /**
2150
     * Airway Same Day
2151
     */
2152
    public const AIRWAY_SAME_DAY = '4';
2153
2154
    /**
2155
     * Airway Prague 9-13
2156
     */
2157
    public const AIRWAY_PRAGUE_13 = '5';
2158
2159
    /**
2160
     * Airway Prague 13-17
2161
     */
2162
    public const AIRWAY_PRAGUE_17 = '6';
2163
2164
    /**
2165
     * Airway Prague 17-21
2166
     */
2167
    public const AIRWAY_PRAGUE_21 = '7';
2168
2169
    /**
2170
     * Airway Další den
2171
     */
2172
    public const AIRWAY_NEXT_DAY = '8';
2173
2174
    /**
2175
     * Airway Další pracovní den
2176
     */
2177
    public const AIRWAY_NEXT_WEEKDAY = '9';
2178
2179
    /**
2180
     * JAPO Standard
2181
     */
2182
    public const JAPO_STANDARD = 'STANDARD';
2183
2184
    /**
2185
     * Liftago Express
2186
     */
2187
    public const LIFTAGO_EXPRESS = 'express';
2188
2189
    /**
2190
     * Liftago Standard
2191
     */
2192
    public const LIFTAGO_STANDARD = 'standard';
2193
2194
    /**
2195
     * Liftago Standard 6-8h
2196
     */
2197
    public const LIFTAGO_STANDARD_8 = 'standard-6-8';
2198
2199
    /**
2200
     * Liftago Standard 8-10h
2201
     */
2202
    public const LIFTAGO_STANDARD_10 = 'standard-8-10';
2203
2204
    /**
2205
     * Liftago Standard 10-12h
2206
     */
2207
    public const LIFTAGO_STANDARD_12 = 'standard-10-12';
2208
2209
    /**
2210
     * Liftago Standard 12-14h
2211
     */
2212
    public const LIFTAGO_STANDARD_14 = 'standard-12-14';
2213
2214
    /**
2215
     * Liftago Standard 14-16h
2216
     */
2217
    public const LIFTAGO_STANDARD_16 = 'standard-14-16';
2218
2219
    /**
2220
     * Liftago Standard 16-18h
2221
     */
2222
    public const LIFTAGO_STANDARD_18 = 'standard-16-18';
2223
2224
    /**
2225
     * Liftago Standard 18-20h
2226
     */
2227
    public const LIFTAGO_STANDARD_20 = 'standard-18-20';
2228
2229
    /**
2230
     * Liftago Standard 20-22h
2231
     */
2232
    public const LIFTAGO_STANDARD_22 = 'standard-20-22';
2233
2234
    /**
2235
     * Liftago SLot 10-12h
2236
     */
2237
    public const LIFTAGO_SLOT_12 = 'SLOT10-12';
2238
2239
    /**
2240
     * Liftago SLot 12-15h
2241
     */
2242
    public const LIFTAGO_SLOT_15 = 'SLOT12-15';
2243
2244
    /**
2245
     * Liftago SLot 18-21h
2246
     */
2247
    public const LIFTAGO_SLOT_21 = 'SLOT18-21';
2248
2249
    /**
2250
     * MPL Business parcel (Domestic)
2251
     */
2252
    public const MAGYARPOSTA_MPL_BUSINESS = 'A_175_UZL';
2253
2254
    /**
2255
     * MPL Postal Parcel (Domestic)
2256
     */
2257
    public const MAGYARPOSTA_MPL_POST = 'A_177_MPC';
2258
2259
    /**
2260
     * International priority postal parcel
2261
     */
2262
    public const MAGYARPOSTA_INTERNATIONAL_PRIORITY = 'A_122_ECS';
2263
2264
    /**
2265
     * International postal parcel
2266
     */
2267
    public const MAGYARPOSTA_INTERNATIONAL = 'A_121_CSG';
2268
2269
    /**
2270
     * Europe+ parcel
2271
     */
2272
    public const MAGYARPOSTA_EUROPE_PLUS = 'A_123_EUP';
2273
2274
    /**
2275
     * MPL Europe Standard
2276
     */
2277
    public const MAGYARPOSTA_EUROPE_STANDARD = 'A_125_HAR';
2278
2279
    /**
2280
     * 3H
2281
     */
2282
    public const SAMEDAY_3H = '2';
2283
2284
    /**
2285
     * 3H
2286
     */
2287
    public const SAMEDAY_6H = '3';
2288
2289
    /**
2290
     * 6H
2291
     */
2292
    public const SAMEDAY_EXCLUSIVE = '4';
2293
2294
    /**
2295
     * 24H
2296
     */
2297
    public const SAMEDAY_24H = '7';
2298
2299
    /**
2300
     * Return Standard
2301
     */
2302
    public const SAMEDAY_STANDARD_RETURN = '10';
2303
2304
    /**
2305
     * Locker Next Day
2306
     */
2307
    public const SAMEDAY_LOCKER_NEXT_DAY = '15';
2308
2309
    /**
2310
     * Locker Return
2311
     */
2312
    public const SAMEDAY_LOCKER_RETURN = '24';
2313
2314
    /**
2315
     * Crossborder HD 24H
2316
     */
2317
    public const SAMEDAY_CROSSBORDER_24H_HD = '28';
2318
2319
    /**
2320
     * Crossborder Locker Delivery
2321
     */
2322
    public const SAMEDAY_CROSSBORDER_LOCKER_HD = '30';
2323
2324
    /**
2325
     * SDS Standard
2326
     *
2327
     * @deprecated
2328
     */
2329
    public const SDS_STANDART = self::SDS_STANDARD;
2330
2331
    /**
2332
     * SDS Standard
2333
     */
2334
    public const SDS_STANDARD = 'Standard';
2335
2336
    /**
2337
     * Standard
2338
     */
2339
    public const QDL_STANDARD = '1';
2340
2341
    /**
2342
     * Garantované doručení do 24h
2343
     */
2344
    public const QDL_GARANTED_24H = '2';
2345
2346
    /**
2347
     * Doručení do 12h
2348
     */
2349
    public const QDL_12H = '3';
2350
2351
    /**
2352
     * Paczkomatowa standardowa
2353
     */
2354
    public const INPOST_LOCKER_STANDARD = 'inpost_locker_standard';
2355
2356
    /**
2357
     * Paczkomatowa ekonomiczna
2358
     */
2359
    public const INPOST_LOCKER_ECONOMY = 'inpost_locker_economy';
2360
2361
    /**
2362
     * Kurier standard"
2363
     */
2364
    public const INPOST_COURIER_STANDARD = 'inpost_courier_standard';
2365
2366
    /**
2367
     * Courier Standard 17-20
2368
     */
2369
    public const INPOST_COURIER_STANDARD_1720 = 'inpost_courier_standard_1720';
2370
2371
    /**
2372
     * Courier Standard Saturday
2373
     */
2374
    public const INPOST_COURIER_STANDARD_SATURDAY = 'inpost_courier_standard_saturday';
2375
2376
    /**
2377
     * @return list<string>|null
0 ignored issues
show
Bug introduced by
The type Inspirum\Balikobot\Definitions\list was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
2378
     */
2379
    public static function getForCarrier(string $carrier): ?array
2380
    {
2381
        return self::getForCarriers()[$carrier] ?? null;
0 ignored issues
show
Bug Best Practice introduced by
The expression return self::getForCarriers()[$carrier] ?? null also could return the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2382
    }
2383
2384
    /**
2385
     * @return array<string,list<string>>
0 ignored issues
show
Documentation Bug introduced by
The doc comment array<string,list<string>> at position 4 could not be parsed: Expected '>' at position 4, but found 'list'.
Loading history...
2386
     */
2387
    private static function getForCarriers(): array
2388
    {
2389
        return [
2390
            Carrier::CP => self::cp(),
2391
            Carrier::DPD => self::dpd(),
2392
            Carrier::DHL => self::dhl(),
2393
            Carrier::GEIS => self::geis(),
2394
            Carrier::GLS => self::gls(),
2395
            Carrier::INTIME => self::intime(),
2396
            Carrier::PBH => self::pbh(),
2397
            Carrier::PPL => self::ppl(),
2398
            Carrier::SP => self::sp(),
2399
            Carrier::SPS => self::sps(),
2400
            Carrier::TOPTRANS => self::topTrans(),
2401
            Carrier::ULOZENKA => self::ulozenka(),
2402
            Carrier::UPS => self::ups(),
2403
            Carrier::ZASILKOVNA => self::zasilkovna(),
2404
            Carrier::TNT => self::tnt(),
2405
            Carrier::GW => self::gw(),
2406
            Carrier::GWCZ => self::gwcz(),
2407
            Carrier::MESSENGER => self::messenger(),
2408
            Carrier::DHLDE => self::dhlde(),
2409
            Carrier::FEDEX => self::fedex(),
2410
            Carrier::FOFR => self::fofr(),
2411
            Carrier::DACHSER => self::dachser(),
2412
            Carrier::DHLPARCEL => self::dhlparcel(),
2413
            Carrier::RABEN => self::raben(),
2414
            Carrier::SPRING => self::spring(),
2415
            Carrier::DSV => self::dsv(),
2416
            Carrier::DHLFREIGHTEC => self::dhlfreightec(),
2417
            Carrier::KURIER => self::kurier(),
2418
            Carrier::DBSCHENKER => self::dbschenker(),
2419
            Carrier::AIRWAY => self::airway(),
2420
            Carrier::JAPO => self::japo(),
2421
            Carrier::LIFTAGO => self::liftago(),
2422
            Carrier::MAGYARPOSTA => self::magyarposta(),
2423
            Carrier::SAMEDAY => self::sameday(),
2424
            Carrier::SDS => self::sds(),
2425
            Carrier::QDL => self::qdl(),
2426
            Carrier::INPOST => self::inpost(),
2427
        ];
2428
    }
2429
2430
    /** @return list<string> */
2431
    private static function cp(): array
2432
    {
2433
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::CP_DR...f::CP_CE, self::CP_OLZ) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2434
            self::CP_DR,
2435
            self::CP_RR,
2436
            self::CP_SR,
2437
            self::CP_RRP,
2438
            self::CP_SRP,
2439
            // self::CP_NP,
2440
            // self::CP_NV,
2441
            self::CP_VL,
2442
            self::CP_DV,
2443
            self::CP_BA,
2444
            self::CP_BB,
2445
            self::CP_BN,
2446
            self::CP_NB,
2447
            self::CP_DT,
2448
            // self::CP_DS,
2449
            // self::CP_EE,
2450
            // self::CP_BE,
2451
            self::CP_RZP,
2452
            self::CP_VZP,
2453
            self::CP_EM,
2454
            self::CP_CSP,
2455
            self::CP_CSE,
2456
            self::CP_CVP,
2457
            self::CP_CVE,
2458
            self::CP_CE,
2459
            self::CP_OLZ,
2460
        ];
2461
    }
2462
2463
    /** @return list<string> */
2464
    private static function dpd(): array
2465
    {
2466
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DPD_C...::DPD_PRIVATE_SATURDAY) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2467
            self::DPD_CLASSIC,
2468
            self::DPD_PRIVATE,
2469
            self::DPD_PICKUP,
2470
            self::DPD_EXPRESS_10,
2471
            self::DPD_EXPRESS_12,
2472
            self::DPD_EXPRESS_18,
2473
            // self::DPD_PRIVATE_EVENING,
2474
            self::DPD_PRIVATE_SATURDAY,
2475
        ];
2476
    }
2477
2478
    /** @return list<string> */
2479
    private static function dhl(): array
2480
    {
2481
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DHL_W...f::DHL_MEDICAL_EXPRESS) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2482
            self::DHL_WORLDWIDE,
2483
            self::DHL_EXPRESS_DOCUMENTS,
2484
            self::DHL_EXPRESS_WORLDWIDE_9,
2485
            self::DHL_EXPRESS_WORLDWIDE_12,
2486
            self::DHL_ECONOMY,
2487
            self::DHL_DOMESTIC_12,
2488
            self::DHL_DOMESTIC_EXPRESS,
2489
            self::DHL_MEDICAL_EXPRESS,
2490
        ];
2491
    }
2492
2493
    /** @return list<string> */
2494
    private static function geis(): array
2495
    {
2496
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::GEIS_...REMIUM, self::GEIS_B2B) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2497
            self::GEIS_CARGO_BUSINESS_NATIONAL,
2498
            self::GEIS_CARGO_BUSINESS_INTERNATIONAL,
2499
            // self::GEIS_CARGO_PRIVATE_NATIONAL,
2500
            // self::GEIS_CARGO_PRIVATE_INTERNATIONAL,
2501
            self::GEIS_PARCEL_HD_STANDARD,
2502
            self::GEIS_PARCEL_HD_PREMIUM,
2503
            self::GEIS_B2B,
2504
        ];
2505
    }
2506
2507
    /** @return list<string> */
2508
    private static function gls(): array
2509
    {
2510
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::GLS_B...:GLS_GUARANTEED24_SHOP) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2511
            self::GLS_BUSINESS,
2512
            self::GLS_SHOP,
2513
            self::GLS_EXPRESS,
2514
            self::GLS_GUARANTEED24,
2515
            self::GLS_GUARANTEED24_EXPRESS,
2516
            self::GLS_GUARANTEED24_SHOP,
2517
        ];
2518
    }
2519
2520
    /** @return list<string> */
2521
    private static function intime(): array
2522
    {
2523
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::INTIM...f::INTIME_EXTRA_CZ_800) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2524
            self::INTIME_SMALL_CZ,
2525
            self::INTIME_MEDIUM_CZ,
2526
            self::INTIME_LARGE_CZ,
2527
            self::INTIME_POSTOMAT_CZ,
2528
            // self::INTIME_POSTOMAT_SK,
2529
            self::INTIME_LARGE_SK,
2530
            self::INTIME_EXTRA_CZ,
2531
            self::INTIME_PARCEL_EU,
2532
            self::INTIME_PARCEL_EU_PLUS,
2533
            self::INTIME_BOX_CZ,
2534
            // self::INTIME_BOX_SK,
2535
            self::INTIME_EXTRA_SK_100,
2536
            self::INTIME_EXTRA_SK_800,
2537
            self::INTIME_EXTRA_CZ_800,
2538
        ];
2539
    }
2540
2541
    /** @return list<string> */
2542
    private static function pbh(): array
2543
    {
2544
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::PBH_D...TELLA, self::PBH_CP_NB) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2545
            self::PBH_DHL,
2546
            self::PBH_GLS,
2547
            self::PBH_SPS,
2548
            self::PBH_SP,
2549
            self::PBH_TRANSOFLEX,
2550
            self::PBH_MP,
2551
            self::PBH_CARGUS,
2552
            self::PBH_RP,
2553
            self::PBH_CP_DR,
2554
            self::PBH_CP_NP,
2555
            self::PBH_PPL,
2556
            self::PBH_DPD,
2557
            self::PBH_PP,
2558
            self::PBH_INPOST_KURIER,
2559
            self::PBH_FAN_KURIER,
2560
            // self::PBH_HERMES,
2561
            self::PBH_SPEEDY,
2562
            self::PBH_COLISSIMO,
2563
            // self::PBH_MEEST,
2564
            // self::PBH_NOBA_POSHTA,
2565
            self::PBH_ECONT,
2566
            self::PBH_ACS,
2567
            self::PBH_CORREOS,
2568
            // self::PBH_123_KURIER,
2569
            // self::PBH_ROYAL_MAIL_24,
2570
            // self::PBH_ROYAL_MAIL_48,
2571
            self::PBH_EXPRESS_ONE,
2572
            self::PBH_UPS,
2573
            self::PBH_WARENPOST,
2574
            self::PBH_HR_POST,
2575
            self::PBH_BOX_NOW,
2576
            self::PBH_SI,
2577
            self::PBH_ITELLA,
2578
            self::PBH_CP_NB,
2579
        ];
2580
    }
2581
2582
    /** @return list<string> */
2583
    private static function ppl(): array
2584
    {
2585
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::PPL_C...lf::PPL_RETURN_CONNECT) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2586
            self::PPL_CONNECT,
2587
            self::PPL_AFTERNOON,
2588
            self::PPL_PRIVATE,
2589
            self::PPL_BUSINESS,
2590
            // self::PPL_PRIVATE_EVENING,
2591
            self::PPL_BUSINESS_EU,
2592
            self::PPL_BUSINESS_PALETTE,
2593
            self::PPL_PRIVATE_PALETTE,
2594
            self::PPL_PARCEL_RETURN_CZ,
2595
            self::PPL_PRIVATE_SMART_CZ,
2596
            self::PPL_PRIVATE_SMART_EU,
2597
            self::PPL_RETURN_CONNECT,
2598
        ];
2599
    }
2600
2601
    /** @return list<string> */
2602
    private static function sp(): array
2603
    {
2604
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::SP_EX...::SP_BNB, self::SP_RRA) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2605
            // self::SP_BZA,
2606
            // self::SP_BZP,
2607
            // self::SP_BZB,
2608
            self::SP_EXA,
2609
            self::SP_EXP,
2610
            self::SP_EXB,
2611
            self::SP_BNA,
2612
            self::SP_BNP,
2613
            self::SP_BNB,
2614
            self::SP_RRA,
2615
        ];
2616
    }
2617
2618
    /** @return list<string> */
2619
    private static function sps(): array
2620
    {
2621
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::SPS_E...elf::SPS_INTERNATIONAL) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2622
            self::SPS_EXPRESS,
2623
            self::SPS_EXPRESS_12,
2624
            self::SPS_EXPRESS_9,
2625
            self::SPS_INTERNATIONAL,
2626
        ];
2627
    }
2628
2629
    /** @return list<string> */
2630
    private static function topTrans(): array
2631
    {
2632
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::TOPTR... self::TOPTRANS_NOTICE) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2633
            self::TOPTRANS_STANDARD,
2634
            self::TOPTRANS_TOPTIME,
2635
            self::TOPTRANS_PRIVATE,
2636
            self::TOPTRANS_WEEKEND,
2637
            self::TOPTRANS_PERSONAL,
2638
            self::TOPTRANS_NOTICE,
2639
        ];
2640
    }
2641
2642
    /** @return list<string> */
2643
    private static function ulozenka(): array
2644
    {
2645
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::ULOZE...ULOZENKA_MALL_DELIVERY) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2646
            // self::ULOZENKA_ULOZENKA,
2647
            self::ULOZENKA_SP,
2648
            self::ULOZENKA_DPD_CLASSIC_SK,
2649
            self::ULOZENKA_DPD_PRIVATE,
2650
            self::ULOZENKA_DPD_PARCEL,
2651
            self::ULOZENKA_CP_DR,
2652
            self::ULOZENKA_CP_NP,
2653
            self::ULOZENKA_PARTNER,
2654
            self::ULOZENKA_D1,
2655
            self::ULOZENKA_EXPRESS_COURRIER,
2656
            self::ULOZENKA_EXPRESS_SK,
2657
            self::ULOZENKA_BALIKOBOX_SK,
2658
            self::ULOZENKA_DEPO_SK,
2659
            self::ULOZENKA_MALL_DELIVERY,
2660
        ];
2661
    }
2662
2663
    /** @return list<string> */
2664
    private static function ups(): array
2665
    {
2666
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::UPS_E...D, self::UPS_EXPEDITED) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2667
            self::UPS_EXPRESS,
2668
            self::UPS_EXPRESS_SAVER,
2669
            self::UPS_STANDARD,
2670
            self::UPS_EXPEDITED,
2671
        ];
2672
    }
2673
2674
    /** @return list<string> */
2675
    private static function zasilkovna(): array
2676
    {
2677
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::ZASIL...A_TR_FEDEX_PRIORITY_HD) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2678
            self::ZASILKOVNA_VMCZ,
2679
            self::ZASILKOVNA_VMSK,
2680
            self::ZASILKOVNA_VMHU,
2681
            self::ZASILKOVNA_VMPL,
2682
            self::ZASILKOVNA_VMRO,
2683
            self::ZASILKOVNA_AT_DPD_HD,
2684
            self::ZASILKOVNA_AT_POST_HD,
2685
            self::ZASILKOVNA_BE_POST_PP,
2686
            self::ZASILKOVNA_BE_POST_HD,
2687
            self::ZASILKOVNA_BE_NL_POST_HD,
2688
            self::ZASILKOVNA_BG_ECONT_HD,
2689
            self::ZASILKOVNA_BG_ECONT_PP,
2690
            self::ZASILKOVNA_BG_SPEEDY_PP,
2691
            self::ZASILKOVNA_BG_SPEEDY_HD,
2692
            self::ZASILKOVNA_BG_ECONT_BOX,
2693
            self::ZASILKOVNA_BG_SAMEDAY_HD,
2694
            self::ZASILKOVNA_BG_SAMEDAY_BOX,
2695
            self::ZASILKOVNA_BG_BOXNOW_BOX,
2696
            self::ZASILKOVNA_GB_FEDEX_HD_CONNECT_PLUS,
2697
            self::ZASILKOVNA_GB_FEDEX_HD_PRIORITY,
2698
            self::ZASILKOVNA_CY_BOXNOW_BOX,
2699
            // self::ZASILKOVNA_CZ_POST_HD,
2700
            self::ZASILKOVNA_CZ_EXPRESS_PRAHA_HD,
2701
            // self::ZASILKOVNA_CZ_EXPRESS_BRNO_HD,
2702
            self::ZASILKOVNA_CZ_EXPRESS_OSTRAVA_HD,
2703
            self::ZASILKOVNA_CZ_COURIER_HD,
2704
            self::ZASILKOVNA_CZ_CAR_TRUNK,
2705
            self::ZASILKOVNA_CZ_EVENING_BRNO_HD,
2706
            // self::ZASILKOVNA_DE_POST_HD,
2707
            self::ZASILKOVNA_DE_HERMES_PP,
2708
            self::ZASILKOVNA_DE_HERMES_HD,
2709
            self::ZASILKOVNA_DE_HOME_DELIVERY_HD,
2710
            self::ZASILKOVNA_DK_POST_NORD_HD,
2711
            self::ZASILKOVNA_DK_POST_NORD_PP,
2712
            // self::ZASILKOVNA_DK_DAO_HD,
2713
            // self::ZASILKOVNA_DK_DAO_PP,
2714
            self::ZASILKOVNA_EE_OMNIVA_HD,
2715
            self::ZASILKOVNA_EE_OMNIVA_PP,
2716
            self::ZASILKOVNA_EE_OMNIVA_BOX,
2717
            self::ZASILKOVNA_EE_LT_POST_HD,
2718
            self::ZASILKOVNA_EE_VENIPAK_HD,
2719
            self::ZASILKOVNA_EE_VENIPAK_PP,
2720
            self::ZASILKOVNA_EE_VENIPAK_BOX,
2721
            self::ZASILKOVNA_ES_CORREOS_HD,
2722
            self::ZASILKOVNA_ES_MRW_HD,
2723
            self::ZASILKOVNA_ES_MRW_PP,
2724
            // self::ZASILKOVNA_ES_ENVIALIA_HD,
2725
            self::ZASILKOVNA_FI_POST_NORD_HP,
2726
            self::ZASILKOVNA_FI_POST_NORD_PP,
2727
            self::ZASILKOVNA_FI_MATKAHUOLTO_HD,
2728
            self::ZASILKOVNA_FI_MATKAHUOLTO_PP,
2729
            self::ZASILKOVNA_FI_MATKAHUOLTO_BOX,
2730
            // self::ZASILKOVNA_FR_COLIS_PRIVE_HD,
2731
            // self::ZASILKOVNA_FR_MONDIAL_PP,
2732
            self::ZASILKOVNA_FR_COLISSIMO_PP,
2733
            self::ZASILKOVNA_FR_COLISSIMO_HD,
2734
            self::ZASILKOVNA_FR_MONDIAL_RELAY_PP,
2735
            self::ZASILKOVNA_FR_COLIS_PRIVE_DIRECT_HD,
2736
            // self::ZASILKOVNA_GB_HERMES_HD,
2737
            self::ZASILKOVNA_GB_ROYAL_MAIL_24_HD,
2738
            self::ZASILKOVNA_GB_ROYAL_MAIL_48_HD,
2739
            self::ZASILKOVNA_GR_TAXYDROMIKI,
2740
            self::ZASILKOVNA_GR_ACS_HD,
2741
            self::ZASILKOVNA_GR_ACS_PP,
2742
            // self::ZASILKOVNA_GR_SPEEDY_HD,
2743
            self::ZASILKOVNA_GR_SPEEDEX_HD,
2744
            self::ZASILKOVNA_GR_BOXNOW_BOX,
2745
            self::ZASILKOVNA_GR_ELTA_COURIER_HD,
2746
            self::ZASILKOVNA_GR_ELTA_COURIER_PP,
2747
            self::ZASILKOVNA_HR_OVERSEAS_HD,
2748
            self::ZASILKOVNA_HR_OVERSEAS_PP,
2749
            // self::ZASILKOVNA_HR_DPD_HD,
2750
            self::ZASILKOVNA_HR_POST_PP,
2751
            self::ZASILKOVNA_HR_POST_HD,
2752
            self::ZASILKOVNA_HR_BOXNOW_BOX,
2753
            self::ZASILKOVNA_HU_EXPRESS_ONE_HD,
2754
            // self::ZASILKOVNA_HU_DPD_HD,
2755
            self::ZASILKOVNA_HU_COURIER_HD,
2756
            self::ZASILKOVNA_HU_POST_HD,
2757
            self::ZASILKOVNA_HU_POST_PP,
2758
            self::ZASILKOVNA_HU_POST_BOX,
2759
            self::ZASILKOVNA_HU_FOXPOST_BOX,
2760
            // self::ZASILKOVNA_HU_FAMA_FUTAR_HD,
2761
            self::ZASILKOVNA_CH_POST_PRIORITY_HD,
2762
            self::ZASILKOVNA_CH_POST_HD,
2763
            // self::ZASILKOVNA_IE_HERMES_HD,
2764
            self::ZASILKOVNA_IE_ANPOST_HD,
2765
            self::ZASILKOVNA_IE_FEDEX_HD_CONNECT_PLUS,
2766
            self::ZASILKOVNA_IE_FEDEX_HD_PRIORITY,
2767
            // self::ZASILKOVNA_IL_FEDEX_PRIORITY_HD,
2768
            // self::ZASILKOVNA_IL_FEDEX_ECONOMY_HD,
2769
            self::ZASILKOVNA_IT_BARTOLINI_HD,
2770
            self::ZASILKOVNA_IT_BARTOLINI_PP,
2771
            self::ZASILKOVNA_IT_POST_PP,
2772
            self::ZASILKOVNA_IT_BARTOLINI_BOX,
2773
            // self::ZASILKOVNA_IT_GLS_HD,
2774
            self::ZASILKOVNA_IT_HR_PARCEL_HD,
2775
            self::ZASILKOVNA_IT_POST_HD,
2776
            self::ZASILKOVNA_LT_OMNIVA_BOX,
2777
            self::ZASILKOVNA_LT_OMNIVA_HD,
2778
            self::ZASILKOVNA_LU_POST_HD,
2779
            self::ZASILKOVNA_LU_DPD_HD,
2780
            self::ZASILKOVNA_LV_OMNIVA_BOX,
2781
            self::ZASILKOVNA_LV_OMNIVA_HD,
2782
            self::ZASILKOVNA_LV_LT_POST_HD,
2783
            self::ZASILKOVNA_LV_VENIPAK_HD,
2784
            self::ZASILKOVNA_LV_VENIPAK_PP,
2785
            self::ZASILKOVNA_LV_VENIPAK_BOX,
2786
            self::ZASILKOVNA_LT_POST_HD,
2787
            self::ZASILKOVNA_LT_POST_BOX,
2788
            self::ZASILKOVNA_LT_VENIPAK_HD,
2789
            self::ZASILKOVNA_LT_VENIPAK_PP,
2790
            self::ZASILKOVNA_LT_VENIPAK_BOX,
2791
            self::ZASILKOVNA_NL_DHL_HD,
2792
            self::ZASILKOVNA_NL_POST_HD,
2793
            self::ZASILKOVNA_NL_DHL_PP,
2794
            // self::ZASILKOVNA_PL_POST_24_HD,
2795
            // self::ZASILKOVNA_PL_POST_48_HD,
2796
            // self::ZASILKOVNA_PL_DPD_HD,
2797
            self::ZASILKOVNA_PL_COURIER_HD,
2798
            self::ZASILKOVNA_PL_INPOST_PACZKOMATY_BOX,
2799
            self::ZASILKOVNA_PL_POST_PP,
2800
            // self::ZASILKOVNA_PL_INPOST_HD,
2801
            self::ZASILKOVNA_PT_MRW_HD,
2802
            self::ZASILKOVNA_PT_MRW_PP,
2803
            self::ZASILKOVNA_RO_COURIER_HD,
2804
            self::ZASILKOVNA_RO_URGENT_CARGUS_HD,
2805
            self::ZASILKOVNA_RO_SAMEDAY_BOX,
2806
            // self::ZASILKOVNA_RO_DPD_HD,
2807
            self::ZASILKOVNA_RO_SAMEDAY_HD,
2808
            self::ZASILKOVNA_RO_FAN_COURIER_HD,
2809
            self::ZASILKOVNA_RO_FAN_BOX,
2810
            // self::ZASILKOVNA_RU_POST_PP,
2811
            // self::ZASILKOVNA_RU_POST_RECOMMENDED_PP,
2812
            // self::ZASILKOVNA_RU_EMS_HD,
2813
            self::ZASILKOVNA_SE_POST_NORD_PP,
2814
            self::ZASILKOVNA_SE_POST_NORD_HD,
2815
            // self::ZASILKOVNA_SI_DPD_HD,
2816
            // self::ZASILKOVNA_SI_DPD_PP,
2817
            self::ZASILKOVNA_SI_POST_HD,
2818
            self::ZASILKOVNA_SI_POST_PP,
2819
            self::ZASILKOVNA_SI_POST_BOX,
2820
            self::ZASILKOVNA_SI_EXPRESS_ONE_HD,
2821
            self::ZASILKOVNA_SI_EXPRESS_ONE_PP,
2822
            self::ZASILKOVNA_SK_EXPRESS_BRATISLAVA_HD,
2823
            self::ZASILKOVNA_SK_COURIER_HD,
2824
            // self::ZASILKOVNA_SK_POST_HD,
2825
            self::ZASILKOVNA_UA_NOVA_POSHTA_PP,
2826
            self::ZASILKOVNA_UA_ROSAN_HD,
2827
            self::ZASILKOVNA_US_FEDEX_ECONOMY_HD,
2828
            self::ZASILKOVNA_US_FEDEX_PRIORITY_HD,
2829
            self::ZASILKOVNA_TR_FEDEX_ECONOMY_HD,
2830
            self::ZASILKOVNA_TR_FEDEX_PRIORITY_HD,
2831
        ];
2832
    }
2833
2834
    /** @return list<string> */
2835
    private static function tnt(): array
2836
    {
2837
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::TNT_E...elf::TNT_DIRECT_INFEED) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2838
            self::TNT_EXPRESS,
2839
            self::TNT_EXPRESS_9,
2840
            self::TNT_EXPRESS_12,
2841
            self::TNT_ECONOMY_EXPRESS,
2842
            // self::TNT_NIGHT_EXPRESS_8,
2843
            self::TNT_ECONOMY_EXPRESS_12,
2844
            self::TNT_EXPRESS_10,
2845
            self::TNT_EXPRESS_DOCUMENTS,
2846
            self::TNT_EXPRESS_DOCUMENTS_9,
2847
            self::TNT_EXPRESS_DOCUMENTS_10,
2848
            self::TNT_EXPRESS_DOCUMENTS_12,
2849
            // self::TNT_NIGHT_EXPRESS_12,
2850
            // self::TNT_NIGHT_EXPRESS_6,
2851
            // self::TNT_NIGHT_EXPRESS_7,
2852
            // self::TNT_NIGHT_EXPRESS_14,
2853
            self::TNT_SPECIAL_ECONOMY_EXPRESS,
2854
            self::TNT_DIRECT_INFEED,
2855
        ];
2856
    }
2857
2858
    /** @return list<string> */
2859
    private static function gw(): array
2860
    {
2861
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::GW_DO...GW_PICKUP_BY_CONSIGNEE) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2862
            self::GW_DOMESTIC,
2863
            self::GW_HOME_DELIVERY,
2864
            self::GW_PRIORITY_9,
2865
            self::GW_PRIORITY_12,
2866
            self::GW_PRIORITY_16,
2867
            self::GW_DIRECT_GOODS,
2868
            self::GW_EXPORT,
2869
            self::GW_PICKUP,
2870
            self::GW_PICKUP_BY_CONSIGNEE,
2871
        ];
2872
    }
2873
2874
    /** @return list<string> */
2875
    private static function gwcz(): array
2876
    {
2877
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::GW_W2...::GW_D14, self::GW_EUR) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2878
            self::GW_W24,
2879
            self::GW_D8,
2880
            self::GW_D12,
2881
            self::GW_D14,
2882
            self::GW_EUR,
2883
        ];
2884
    }
2885
2886
    /** @return list<string> */
2887
    private static function messenger(): array
2888
    {
2889
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::MESSE...MESSENGER_PRAGUE_17_21) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2890
            self::MESSENGER_STANDARD,
2891
            self::MESSENGER_EXTREME,
2892
            self::MESSENGER_EXPRESS,
2893
            self::MESSENGER_SAME_DAY,
2894
            self::MESSENGER_OVERNIGHT_ECONOMY,
2895
            self::MESSENGER_OVERNIGHT_EXPRESS,
2896
            self::MESSENGER_DIRECT,
2897
            self::MESSENGER_ECONOMY_BRNO,
2898
            self::MESSENGER_PRAGUE_09_13,
2899
            self::MESSENGER_PRAGUE_13_17,
2900
            self::MESSENGER_PRAGUE_17_21,
2901
        ];
2902
    }
2903
2904
    /** @return list<string> */
2905
    private static function dhlde(): array
2906
    {
2907
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DHLDE...ARENPOST_INTERNATIONAL) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2908
            self::DHLDE_PAKET,
2909
            self::DHLDE_PAKET_TAGGLEICH,
2910
            self::DHLDE_PAKET_INTERNATIONAL,
2911
            self::DHLDE_EUROPAKET,
2912
            self::DHLDE_PAKET_CONNECT,
2913
            self::DHLDE_WARENPOST_DOMESTIC,
2914
            self::DHLDE_WARENPOST_INTERNATIONAL,
2915
        ];
2916
    }
2917
2918
    /** @return list<string> */
2919
    private static function fedex(): array
2920
    {
2921
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::FEDEX...:FEDEX_REGIONAL_REIGHT) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2922
            self::FEDEX_INTERNATIONAL,
2923
            self::FEDEX_ECONOMY,
2924
            self::FEDEX_INTERNATIONAL_FIRST,
2925
            self::FEDEX_INTERNATIONAL_PRIORITY_EXPRESS,
2926
            self::FEDEX_INTERNATIONAL_PRIORITY,
2927
            self::FEDEX_REGIONAL_ECONOMY,
2928
            self::FEDEX_INTERNATIONAL_PRIORITY_FREIGHT,
2929
            self::FEDEX_INTERNATIONAL_ECONOMY_FREIGHT,
2930
            self::FEDEX_REGIONAL_ECONOMY_FREIGHT,
2931
            self::FEDEX_INTERNATIONAL_CONNECT_PLUS,
2932
            // self::FEDEX_PRIORITY_OVERNIGHT,
2933
            self::FEDEX_FIRST,
2934
            self::FEDEX_PRIORITY_EXPRESS,
2935
            self::FEDEX_PRIORITY,
2936
            self::FEDEX_REGIONAL_EXPRESS_FREIGHT,
2937
            self::FEDEX_REGIONAL_REIGHT,
2938
        ];
2939
    }
2940
2941
    /** @return list<string> */
2942
    private static function fofr(): array
2943
    {
2944
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::FOFR_..._SK, self::FOFR_ABROAD) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2945
            self::FOFR_FOFR,
2946
            self::FOFR_ECONOMY,
2947
            self::FOFR_PARCEL,
2948
            self::FOFR_PALETTE,
2949
            self::FOFR_OVERSIZED,
2950
            self::FOFR_SK,
2951
            self::FOFR_ABROAD,
2952
        ];
2953
    }
2954
2955
    /** @return list<string> */
2956
    private static function dachser(): array
2957
    {
2958
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DACHS...lf::DACHSER_ONSITE_FIX) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2959
            self::DACHSER_SPEED,
2960
            self::DACHSER_SPEED_10,
2961
            self::DACHSER_SPEED_12,
2962
            self::DACHSER_SPEED_PLUS,
2963
            self::DACHSER_FIX,
2964
            self::DACHSER_FIX_10,
2965
            self::DACHSER_FIX_12,
2966
            self::DACHSER_FLEX,
2967
            self::DACHSER_ONSITE,
2968
            self::DACHSER_CLASSIC,
2969
            self::DACHSER_ONSITE_FIX,
2970
        ];
2971
    }
2972
2973
    /** @return list<string> */
2974
    private static function dhlparcel(): array
2975
    {
2976
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DHLPARCEL_CONNECT) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2977
            self::DHLPARCEL_CONNECT,
2978
        ];
2979
    }
2980
2981
    /** @return list<string> */
2982
    private static function raben(): array
2983
    {
2984
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::RABEN...elf::RABEN_PREMIUM_FIX) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2985
            self::RABEN_CLASSIC,
2986
            self::RABEN_CLASSIC_TIME,
2987
            self::RABEN_PREMIUM,
2988
            self::RABEN_PREMIUM_TIME,
2989
            self::RABEN_PREMIUM_12,
2990
            self::RABEN_PREMIUM_FIX,
2991
        ];
2992
    }
2993
2994
    /** @return list<string> */
2995
    private static function spring(): array
2996
    {
2997
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::SPRIN...self::SPRING_UNTRACKED) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
2998
            self::SPRING_TRACKED,
2999
            self::SPRING_SIGNATURED,
3000
            self::SPRING_UNTRACKED,
3001
        ];
3002
    }
3003
3004
    /** @return list<string> */
3005
    private static function dsv(): array
3006
    {
3007
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DSV_ROAD, self::DSV_B2C) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3008
            self::DSV_ROAD,
3009
            self::DSV_B2C,
3010
        ];
3011
    }
3012
3013
    /** @return list<string> */
3014
    private static function dhlfreightec(): array
3015
    {
3016
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DHLFR...self::DHLFREIGHTEC_ELI) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3017
            self::DHLFREIGHTEC_ECD_B2B,
3018
            self::DHLFREIGHTEC_ECD_B2C,
3019
            self::DHLFREIGHTEC_ECI,
3020
            self::DHLFREIGHTEC_ERI,
3021
            self::DHLFREIGHTEC_ELD,
3022
            self::DHLFREIGHTEC_ELI,
3023
        ];
3024
    }
3025
3026
    /** @return list<string> */
3027
    private static function kurier(): array
3028
    {
3029
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::KURIE...KURIER_STANDARD_BRANCH) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3030
            self::KURIER_GARANTED,
3031
            self::KURIER_GARANTED_BRANCH,
3032
            // self::KURIER_12,
3033
            self::KURIER_STANDARD,
3034
            self::KURIER_STANDARD_BRANCH,
3035
        ];
3036
    }
3037
3038
    /** @return list<string> */
3039
    private static function dbschenker(): array
3040
    {
3041
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::DBSCH..., self::DBSCHENKER_LPA) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3042
            self::DBSCHENKER_SYSTEM_FIX,
3043
            self::DBSCHENKER_SYSTEM_FIX_TBA,
3044
            self::DBSCHENKER_SYSTEM,
3045
            self::DBSCHENKER_SYSTEM_PREMIUM,
3046
            self::DBSCHENKER_SYSTEM_PREMIUM_10,
3047
            self::DBSCHENKER_SYSTEM_PREMIUM_13,
3048
            self::DBSCHENKER_SYSTEM_FIX_10,
3049
            self::DBSCHENKER_SYSTEM_FIX_13,
3050
            self::DBSCHENKER_FULL_LOAD,
3051
            self::DBSCHENKER_PART_LOAD,
3052
            self::DBSCHENKER_LPA,
3053
        ];
3054
    }
3055
3056
    /** @return list<string> */
3057
    private static function airway(): array
3058
    {
3059
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::AIRWA...f::AIRWAY_NEXT_WEEKDAY) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3060
            self::AIRWAY_EXPRESS,
3061
            self::AIRWAY_NORMAL,
3062
            self::AIRWAY_ECONOMY,
3063
            self::AIRWAY_SAME_DAY,
3064
            self::AIRWAY_PRAGUE_13,
3065
            self::AIRWAY_PRAGUE_17,
3066
            self::AIRWAY_PRAGUE_21,
3067
            self::AIRWAY_NEXT_DAY,
3068
            self::AIRWAY_NEXT_WEEKDAY,
3069
        ];
3070
    }
3071
3072
    /** @return list<string> */
3073
    private static function japo(): array
3074
    {
3075
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::JAPO_STANDARD) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3076
            self::JAPO_STANDARD,
3077
        ];
3078
    }
3079
3080
    /** @return list<string> */
3081
    private static function liftago(): array
3082
    {
3083
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::LIFTA... self::LIFTAGO_SLOT_21) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3084
            self::LIFTAGO_EXPRESS,
3085
            self::LIFTAGO_STANDARD,
3086
            // self::LIFTAGO_STANDARD_8,
3087
            // self::LIFTAGO_STANDARD_10,
3088
            // self::LIFTAGO_STANDARD_12,
3089
            // self::LIFTAGO_STANDARD_14,
3090
            // self::LIFTAGO_STANDARD_16,
3091
            // self::LIFTAGO_STANDARD_18,
3092
            // self::LIFTAGO_STANDARD_20,
3093
            // self::LIFTAGO_STANDARD_22,
3094
            self::LIFTAGO_SLOT_12,
3095
            self::LIFTAGO_SLOT_15,
3096
            self::LIFTAGO_SLOT_21,
3097
        ];
3098
    }
3099
3100
    /** @return list<string> */
3101
    private static function magyarposta(): array
3102
    {
3103
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::MAGYA...RPOSTA_EUROPE_STANDARD) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3104
            self::MAGYARPOSTA_MPL_BUSINESS,
3105
            self::MAGYARPOSTA_MPL_POST,
3106
            self::MAGYARPOSTA_INTERNATIONAL_PRIORITY,
3107
            self::MAGYARPOSTA_INTERNATIONAL,
3108
            self::MAGYARPOSTA_EUROPE_PLUS,
3109
            self::MAGYARPOSTA_EUROPE_STANDARD,
3110
        ];
3111
    }
3112
3113
    /** @return list<string> */
3114
    private static function sameday(): array
3115
    {
3116
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::SAMED..._CROSSBORDER_LOCKER_HD) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3117
            self::SAMEDAY_3H,
3118
            self::SAMEDAY_6H,
3119
            self::SAMEDAY_EXCLUSIVE,
3120
            self::SAMEDAY_24H,
3121
            self::SAMEDAY_STANDARD_RETURN,
3122
            self::SAMEDAY_LOCKER_NEXT_DAY,
3123
            self::SAMEDAY_LOCKER_RETURN,
3124
            self::SAMEDAY_CROSSBORDER_24H_HD,
3125
            self::SAMEDAY_CROSSBORDER_LOCKER_HD,
3126
        ];
3127
    }
3128
3129
    /** @return list<string> */
3130
    private static function sds(): array
3131
    {
3132
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::SDS_STANDARD) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3133
            self::SDS_STANDARD,
3134
        ];
3135
    }
3136
3137
    /** @return list<string> */
3138
    private static function qdl(): array
3139
    {
3140
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::QDL_S...TED_24H, self::QDL_12H) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3141
            self::QDL_STANDARD,
3142
            self::QDL_GARANTED_24H,
3143
            self::QDL_12H,
3144
        ];
3145
    }
3146
3147
    /** @return list<string> */
3148
    private static function inpost(): array
3149
    {
3150
        return [
0 ignored issues
show
Bug Best Practice introduced by
The expression return array(self::INPOS...RIER_STANDARD_SATURDAY) returns the type array<integer,string> which is incompatible with the documented return type Inspirum\Balikobot\Definitions\list.
Loading history...
3151
            self::INPOST_LOCKER_STANDARD,
3152
            self::INPOST_LOCKER_ECONOMY,
3153
            self::INPOST_COURIER_STANDARD,
3154
            self::INPOST_COURIER_STANDARD_1720,
3155
            self::INPOST_COURIER_STANDARD_SATURDAY,
3156
        ];
3157
    }
3158
}
3159