| Total Complexity | 2 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | class DefaultCodes |
||
| 25 | { |
||
| 26 | |||
| 27 | /** |
||
| 28 | * The tier price customer group code for all groups. |
||
| 29 | * |
||
| 30 | * @var string |
||
| 31 | */ |
||
| 32 | const ALL_GROUPS = 'ALL GROUPS'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * The tier price website code for all websites. |
||
| 36 | * |
||
| 37 | * @var string |
||
| 38 | */ |
||
| 39 | const ALL_WEBSITES = 'All Websites'; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * This is a utility class, so protect it against direct |
||
| 43 | * instantiation. |
||
| 44 | */ |
||
| 45 | private function __construct() |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * This is a utility class, so protect it against cloning. |
||
| 51 | * |
||
| 52 | * @return void |
||
| 53 | */ |
||
| 54 | private function __clone() |
||
| 58 |