Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | class ParamKeys |
||
33 | { |
||
34 | |||
35 | /** |
||
36 | * The key for the "identityUrl" parameter. |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | const IDENTITY_URL = 'identityUrl'; |
||
41 | |||
42 | /** |
||
43 | * The key for the "authorizationPath" parameter. |
||
44 | * |
||
45 | * @var string |
||
46 | */ |
||
47 | const AUTHORIZATION_PATH = 'authorizationPath'; |
||
48 | |||
49 | /** |
||
50 | * The key for the "serverPort" parameter. |
||
51 | * |
||
52 | * @var string |
||
53 | */ |
||
54 | const SERVER_PORT = 'serverPort'; |
||
55 | |||
56 | |||
57 | /** |
||
58 | * This is a utility class, so protect it against direct instantiation. |
||
59 | */ |
||
60 | private function __construct() |
||
62 | } |
||
63 | |||
64 | /** |
||
65 | * This is a utility class, so protect it against cloning. |
||
66 | * |
||
67 | * @return void |
||
68 | */ |
||
69 | private function __clone() |
||
73 |