1 | <?php |
||
32 | class InputArgumentKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * This is a utility class, so protect it against direct |
||
37 | * instantiation. |
||
38 | */ |
||
39 | private function __construct() |
||
42 | |||
43 | /** |
||
44 | * This is a utility class, so protect it against cloning. |
||
45 | * |
||
46 | * @return void |
||
47 | */ |
||
48 | private function __clone() |
||
51 | |||
52 | /** |
||
53 | * Key for operation name 'add-update'. |
||
54 | * |
||
55 | * @var string |
||
56 | */ |
||
57 | const OPERATION_NAME_ARG_ADD_UPDATE = 'add-update'; |
||
58 | |||
59 | /** |
||
60 | * Key for operation name 'replace'. |
||
61 | * |
||
62 | * @var string |
||
63 | */ |
||
64 | const OPERATION_NAME_ARG_REPLACE = 'replace'; |
||
65 | |||
66 | /** |
||
67 | * Key for operation name 'delete'. |
||
68 | * |
||
69 | * @var string |
||
70 | */ |
||
71 | const OPERATION_NAME_ARG_DELETE = 'delete'; |
||
72 | |||
73 | /** |
||
74 | * The input argument key for the operation name to use. |
||
75 | * |
||
76 | * @var string |
||
77 | */ |
||
78 | const OPERATION_NAME = 'operation-name'; |
||
79 | } |
||
80 |