1 | <?php |
||
32 | class RequestHandlerKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * The key for the an error message. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | const ERROR_MESSAGE = 'appserver-io.psr.servlet.utils.request-handler-keys.error-message'; |
||
41 | |||
42 | /** |
||
43 | * The key for the an array of error messages. |
||
44 | * |
||
45 | * @var string |
||
46 | */ |
||
47 | const ERROR_MESSAGES = 'appserver-io.psr.servlet.utils.request-handler-keys.error-messages'; |
||
48 | |||
49 | /** |
||
50 | * This is a utility class, so protect it against direct instantiation. |
||
51 | */ |
||
52 | private function __construct() |
||
55 | |||
56 | /** |
||
57 | * This is a utility class, so protect it against cloning. |
||
58 | * |
||
59 | * @return void |
||
60 | */ |
||
61 | private function __clone() |
||
64 | } |
||
65 |