Total Complexity | 2 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
32 | class ParamKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * The configuration key for a step's maximum retry number. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | const MAX_RETRIES = 'maxRetries'; |
||
41 | |||
42 | /** |
||
43 | * This is a utility class, so protect it against direct |
||
44 | * instantiation. |
||
45 | */ |
||
46 | private function __construct() |
||
47 | { |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * This is a utility class, so protect it against cloning. |
||
52 | * |
||
53 | * @return void |
||
54 | */ |
||
55 | private function __clone() |
||
57 | } |
||
58 | } |
||
59 |