1 | <?php |
||
32 | class ContextKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * This is a utility class, so protect it against direct |
||
37 | * instantiation. |
||
38 | * |
||
39 | * @codeCoverageIgnore |
||
40 | */ |
||
41 | private function __construct() |
||
44 | |||
45 | /** |
||
46 | * This is a utility class, so protect it against cloning. |
||
47 | * |
||
48 | * @return void |
||
49 | * @codeCoverageIgnore |
||
50 | */ |
||
51 | private function __clone() |
||
54 | |||
55 | /** |
||
56 | * The context key for the requested method name. |
||
57 | * |
||
58 | * @var string |
||
59 | */ |
||
60 | const METHOD_NAME = 'appserver-io.routlt.util.context-keys.method-name'; |
||
61 | } |
||
62 |