Skip to content

Commit b0d3b56

Browse files
committed
Merge branch 'max-insurance-5000'
2 parents f7a3a90 + c4043c7 commit b0d3b56

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/Bpost/Order/Box/Option/Insured.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,21 @@ class Insured extends Option
2626

2727
const INSURANCE_AMOUNT_UP_TO_2500_EUROS = 2;
2828
const INSURANCE_AMOUNT_UP_TO_5000_EUROS = 3;
29+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
2930
const INSURANCE_AMOUNT_UP_TO_7500_EUROS = 4;
31+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3032
const INSURANCE_AMOUNT_UP_TO_10000_EUROS = 5;
33+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3134
const INSURANCE_AMOUNT_UP_TO_12500_EUROS = 6;
35+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3236
const INSURANCE_AMOUNT_UP_TO_15000_EUROS = 7;
37+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3338
const INSURANCE_AMOUNT_UP_TO_17500_EUROS = 8;
39+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3440
const INSURANCE_AMOUNT_UP_TO_20000_EUROS = 9;
41+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3542
const INSURANCE_AMOUNT_UP_TO_22500_EUROS = 10;
43+
/** @deprecated From SHM API v3.3.24: insurance is limited to 5000€ */
3644
const INSURANCE_AMOUNT_UP_TO_25000_EUROS = 11;
3745

3846
/**
@@ -108,14 +116,6 @@ public static function getPossibleValueValues()
108116
return array(
109117
self::INSURANCE_AMOUNT_UP_TO_2500_EUROS,
110118
self::INSURANCE_AMOUNT_UP_TO_5000_EUROS,
111-
self::INSURANCE_AMOUNT_UP_TO_7500_EUROS,
112-
self::INSURANCE_AMOUNT_UP_TO_10000_EUROS,
113-
self::INSURANCE_AMOUNT_UP_TO_12500_EUROS,
114-
self::INSURANCE_AMOUNT_UP_TO_15000_EUROS,
115-
self::INSURANCE_AMOUNT_UP_TO_17500_EUROS,
116-
self::INSURANCE_AMOUNT_UP_TO_20000_EUROS,
117-
self::INSURANCE_AMOUNT_UP_TO_22500_EUROS,
118-
self::INSURANCE_AMOUNT_UP_TO_25000_EUROS,
119119
);
120120
}
121121

0 commit comments

Comments
 (0)