@@ -22,11 +22,13 @@ discard block |
||
22 | 22 | * @param string $path |
23 | 23 | * @param ContainerBuilder $container |
24 | 24 | * @param array $config |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function load(string $path, ContainerBuilder $container, array $config); |
27 | 28 | |
28 | 29 | /** |
29 | 30 | * @param NodeDefinition $node |
31 | + * @return void |
|
30 | 32 | */ |
31 | 33 | public function addConfiguration(NodeDefinition $node); |
32 | 34 | |
@@ -34,6 +36,7 @@ discard block |
||
34 | 36 | * @param array $bundleConfig |
35 | 37 | * @param string $path |
36 | 38 | * @param ContainerBuilder $container |
39 | + * @return void |
|
37 | 40 | */ |
38 | 41 | public function prepend(array $bundleConfig, string $path, ContainerBuilder $container); |
39 | 42 | } |
@@ -44,6 +44,7 @@ |
||
44 | 44 | /** |
45 | 45 | * @param string $key |
46 | 46 | * @param mixed $value |
47 | + * @return void |
|
47 | 48 | */ |
48 | 49 | public function set($key, $value); |
49 | 50 |
@@ -16,11 +16,13 @@ discard block |
||
16 | 16 | /** |
17 | 17 | * If this method is called, requests using the https scheme without a valid certificates are allowed. |
18 | 18 | * We do not recommend you to call this method. |
19 | + * @return void |
|
19 | 20 | */ |
20 | 21 | public function allowUnsecuredRequests(); |
21 | 22 | |
22 | 23 | /** |
23 | 24 | * If this method is called, requests using the https scheme without a valid certificates are not allowed (default behaviour). |
25 | + * @return void |
|
24 | 26 | */ |
25 | 27 | public function disallowUnsecuredRequests(); |
26 | 28 | |
@@ -33,6 +35,7 @@ discard block |
||
33 | 35 | |
34 | 36 | /** |
35 | 37 | * @param string $proxy |
38 | + * @return void |
|
36 | 39 | */ |
37 | 40 | public function setProxy($proxy); |
38 | 41 | |
@@ -45,6 +48,7 @@ discard block |
||
45 | 48 | |
46 | 49 | /** |
47 | 50 | * Unset the proxy settings. |
51 | + * @return void |
|
48 | 52 | */ |
49 | 53 | public function unsetProxy(); |
50 | 54 |
@@ -39,6 +39,7 @@ |
||
39 | 39 | * @param ServerRequestInterface $request The request |
40 | 40 | * |
41 | 41 | * @throws OAuth2Exception |
42 | + * @return void |
|
42 | 43 | */ |
43 | 44 | public function checkTokenRequest(ServerRequestInterface $request); |
44 | 45 |
@@ -38,6 +38,7 @@ |
||
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param AuthCode $authCode |
41 | + * @return void |
|
41 | 42 | */ |
42 | 43 | public function save(AuthCode $authCode); |
43 | 44 |
@@ -19,6 +19,7 @@ |
||
19 | 19 | * Save the client. |
20 | 20 | * |
21 | 21 | * @param Client $client |
22 | + * @return void |
|
22 | 23 | */ |
23 | 24 | public function save(Client $client); |
24 | 25 |
@@ -19,6 +19,7 @@ |
||
19 | 19 | { |
20 | 20 | /** |
21 | 21 | * @param Event $event |
22 | + * @return void |
|
22 | 23 | */ |
23 | 24 | public function save(Event $event); |
24 | 25 |
@@ -27,6 +27,7 @@ |
||
27 | 27 | |
28 | 28 | /** |
29 | 29 | * @param InitialAccessToken $initialAccessToken |
30 | + * @return void |
|
30 | 31 | */ |
31 | 32 | public function save(InitialAccessToken $initialAccessToken); |
32 | 33 |
@@ -31,6 +31,7 @@ |
||
31 | 31 | |
32 | 32 | /** |
33 | 33 | * @param PreConfiguredAuthorization $preConfiguredAuthorization |
34 | + * @return void |
|
34 | 35 | */ |
35 | 36 | public function save(PreConfiguredAuthorization $preConfiguredAuthorization); |
36 | 37 |