Total Complexity | 2 |
Total Lines | 31 |
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 | * This is a utility class, so protect it against direct instantiation. |
||
51 | */ |
||
52 | private function __construct() |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * This is a utility class, so protect it against cloning. |
||
58 | * |
||
59 | * @return void |
||
60 | */ |
||
61 | private function __clone() |
||
65 |