1 | <?php |
||
19 | class Session extends Component |
||
20 | { |
||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | public static function stateKey(): string |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public static function providerKey(): string |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public static function redirectKey(): string |
||
44 | |||
45 | /** |
||
46 | * @return static |
||
47 | */ |
||
48 | public function removeAll() |
||
54 | |||
55 | /** |
||
56 | * @return string|null |
||
57 | */ |
||
58 | public function getState() |
||
62 | |||
63 | /** |
||
64 | * @param string $value |
||
65 | * @return static |
||
66 | */ |
||
67 | public function setState(string $value) |
||
72 | |||
73 | /** |
||
74 | * @return static |
||
75 | */ |
||
76 | public function removeState() |
||
81 | |||
82 | /** |
||
83 | * @return string|null |
||
84 | */ |
||
85 | public function getProvider() |
||
89 | |||
90 | /** |
||
91 | * @param string $value |
||
92 | * @return static |
||
93 | */ |
||
94 | public function setProvider(string $value) |
||
99 | |||
100 | /** |
||
101 | * @return static |
||
102 | */ |
||
103 | public function removeProvider() |
||
108 | |||
109 | /** |
||
110 | * @return string|null |
||
111 | */ |
||
112 | public function getRedirectUrl() |
||
116 | |||
117 | /** |
||
118 | * @param string $value |
||
119 | * @return static |
||
120 | */ |
||
121 | public function setRedirectUrl(string $value) |
||
126 | |||
127 | /** |
||
128 | * @return static |
||
129 | */ |
||
130 | public function removeRedirectUrl() |
||
135 | } |
||
136 |