@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | public function testHasCookie(): void |
38 | 38 | { |
39 | - $this->http->setHandler(function () { |
|
39 | + $this->http->setHandler(function (){ |
|
40 | 40 | return (int)$this->cookies()->has('a'); |
41 | 41 | }); |
42 | 42 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | ]); |
55 | 55 | $this->http = $this->app->get(Http::class); |
56 | 56 | |
57 | - $this->http->setHandler(function () { |
|
57 | + $this->http->setHandler(function (){ |
|
58 | 58 | return (int)$this->cookies()->has('a'); |
59 | 59 | }); |
60 | 60 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
72 | 72 | $this->http = $this->app->get(Http::class); |
73 | 73 | |
74 | - $this->http->setHandler(function () { |
|
74 | + $this->http->setHandler(function (){ |
|
75 | 75 | return $this->cookies()->get('a'); |
76 | 76 | }); |
77 | 77 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
89 | 89 | $this->http = $this->app->get(Http::class); |
90 | 90 | |
91 | - $this->http->setHandler(function () { |
|
91 | + $this->http->setHandler(function (){ |
|
92 | 92 | $this->cookies()->set('a', 'value'); |
93 | 93 | |
94 | 94 | return 'ok'; |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
113 | 113 | $this->http = $this->app->get(Http::class); |
114 | 114 | |
115 | - $this->http->setHandler(function () { |
|
115 | + $this->http->setHandler(function (){ |
|
116 | 116 | $this->cookies()->schedule(Cookie::create('a', 'value')); |
117 | 117 | $this->assertSame([], $this->cookies()->getAll()); |
118 | 118 | $this->assertCount(1, $this->cookies()->getScheduled()); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
139 | 139 | $this->http = $this->app->get(Http::class); |
140 | 140 | |
141 | - $this->http->setHandler(function () { |
|
141 | + $this->http->setHandler(function (){ |
|
142 | 142 | $this->cookies()->delete('cookie'); |
143 | 143 | |
144 | 144 | return 'ok'; |
@@ -36,7 +36,8 @@ discard block |
||
36 | 36 | |
37 | 37 | public function testHasCookie(): void |
38 | 38 | { |
39 | - $this->http->setHandler(function () { |
|
39 | + $this->http->setHandler(function () |
|
40 | + { |
|
40 | 41 | return (int)$this->cookies()->has('a'); |
41 | 42 | }); |
42 | 43 | |
@@ -54,7 +55,8 @@ discard block |
||
54 | 55 | ]); |
55 | 56 | $this->http = $this->app->get(Http::class); |
56 | 57 | |
57 | - $this->http->setHandler(function () { |
|
58 | + $this->http->setHandler(function () |
|
59 | + { |
|
58 | 60 | return (int)$this->cookies()->has('a'); |
59 | 61 | }); |
60 | 62 | |
@@ -71,7 +73,8 @@ discard block |
||
71 | 73 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
72 | 74 | $this->http = $this->app->get(Http::class); |
73 | 75 | |
74 | - $this->http->setHandler(function () { |
|
76 | + $this->http->setHandler(function () |
|
77 | + { |
|
75 | 78 | return $this->cookies()->get('a'); |
76 | 79 | }); |
77 | 80 | |
@@ -88,7 +91,8 @@ discard block |
||
88 | 91 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
89 | 92 | $this->http = $this->app->get(Http::class); |
90 | 93 | |
91 | - $this->http->setHandler(function () { |
|
94 | + $this->http->setHandler(function () |
|
95 | + { |
|
92 | 96 | $this->cookies()->set('a', 'value'); |
93 | 97 | |
94 | 98 | return 'ok'; |
@@ -112,7 +116,8 @@ discard block |
||
112 | 116 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
113 | 117 | $this->http = $this->app->get(Http::class); |
114 | 118 | |
115 | - $this->http->setHandler(function () { |
|
119 | + $this->http->setHandler(function () |
|
120 | + { |
|
116 | 121 | $this->cookies()->schedule(Cookie::create('a', 'value')); |
117 | 122 | $this->assertSame([], $this->cookies()->getAll()); |
118 | 123 | $this->assertCount(1, $this->cookies()->getScheduled()); |
@@ -138,7 +143,8 @@ discard block |
||
138 | 143 | $this->app = $this->makeApp(['ENCRYPTER_KEY' => $key]); |
139 | 144 | $this->http = $this->app->get(Http::class); |
140 | 145 | |
141 | - $this->http->setHandler(function () { |
|
146 | + $this->http->setHandler(function () |
|
147 | + { |
|
142 | 148 | $this->cookies()->delete('cookie'); |
143 | 149 | |
144 | 150 | return 'ok'; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | |
29 | 29 | public function do(GuardInterface $guard) |
30 | 30 | { |
31 | - if (!$guard->allows('do')) { |
|
31 | + if (!$guard->allows('do')){ |
|
32 | 32 | throw new ControllerException("Unauthorized permission 'do'", ControllerException::FORBIDDEN); |
33 | 33 | } |
34 | 34 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | |
38 | 38 | public function token(AuthContextInterface $authContext) |
39 | 39 | { |
40 | - if ($authContext->getToken() !== null) { |
|
40 | + if ($authContext->getToken() !== null){ |
|
41 | 41 | return $authContext->getToken()->getID(); |
42 | 42 | } |
43 | 43 | |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | public function token2() |
57 | 57 | { |
58 | - if ($this->auth->getToken() !== null) { |
|
58 | + if ($this->auth->getToken() !== null){ |
|
59 | 59 | return $this->auth->getToken()->getID(); |
60 | 60 | } |
61 | 61 |
@@ -26,10 +26,12 @@ discard block |
||
26 | 26 | $this->auth = $auth; |
27 | 27 | } |
28 | 28 | |
29 | - public function do(GuardInterface $guard) |
|
29 | + public function do{ |
|
30 | + (GuardInterface $guard) |
|
30 | 31 | { |
31 | 32 | if (!$guard->allows('do')) { |
32 | 33 | throw new ControllerException("Unauthorized permission 'do'", ControllerException::FORBIDDEN); |
34 | + } |
|
33 | 35 | } |
34 | 36 | |
35 | 37 | return 'ok'; |
@@ -37,7 +39,8 @@ discard block |
||
37 | 39 | |
38 | 40 | public function token(AuthContextInterface $authContext) |
39 | 41 | { |
40 | - if ($authContext->getToken() !== null) { |
|
42 | + if ($authContext->getToken() !== null) |
|
43 | + { |
|
41 | 44 | return $authContext->getToken()->getID(); |
42 | 45 | } |
43 | 46 | |
@@ -55,7 +58,8 @@ discard block |
||
55 | 58 | |
56 | 59 | public function token2() |
57 | 60 | { |
58 | - if ($this->auth->getToken() !== null) { |
|
61 | + if ($this->auth->getToken() !== null) |
|
62 | + { |
|
59 | 63 | return $this->auth->getToken()->getID(); |
60 | 64 | } |
61 | 65 |