@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $this->assertNull($this->app->getEnvironment()->get('FIRED')); |
42 | 42 | |
43 | 43 | $w->shouldReceive('receive')->once()->with( |
44 | - \Mockery::on(function (&$context) { |
|
44 | + \Mockery::on(function (&$context){ |
|
45 | 45 | $context = '{ |
46 | 46 | "id": "1", |
47 | 47 | "job": "spiral.app.job.TestJob" |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $this->app->getContainer()->bind(Worker::class, $w); |
70 | 70 | |
71 | 71 | $w->shouldReceive('receive')->once()->with( |
72 | - \Mockery::on(function (&$context) { |
|
72 | + \Mockery::on(function (&$context){ |
|
73 | 73 | $context = '{ |
74 | 74 | "id": "1", |
75 | 75 | "job": "spiral.app.job.ErrorJob" |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | $w->shouldReceive('receive')->once()->andReturn(null); |
86 | 86 | |
87 | 87 | $files = $this->app->get(FilesInterface::class)->getFiles( |
88 | - $this->app->get(DirectoriesInterface::class)->get('runtime') . '/snapshots/' |
|
88 | + $this->app->get(DirectoriesInterface::class)->get('runtime').'/snapshots/' |
|
89 | 89 | ); |
90 | 90 | |
91 | 91 | $this->assertCount(0, $files); |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $this->app->get(JobDispatcher::class)->serve(); |
94 | 94 | |
95 | 95 | $files = $this->app->get(FilesInterface::class)->getFiles( |
96 | - $this->app->get(DirectoriesInterface::class)->get('runtime') . '/snapshots/' |
|
96 | + $this->app->get(DirectoriesInterface::class)->get('runtime').'/snapshots/' |
|
97 | 97 | ); |
98 | 98 | |
99 | 99 | $this->assertCount(1, $files); |
@@ -41,7 +41,8 @@ discard block |
||
41 | 41 | $this->assertNull($this->app->getEnvironment()->get('FIRED')); |
42 | 42 | |
43 | 43 | $w->shouldReceive('receive')->once()->with( |
44 | - \Mockery::on(function (&$context) { |
|
44 | + \Mockery::on(function (&$context) |
|
45 | + { |
|
45 | 46 | $context = '{ |
46 | 47 | "id": "1", |
47 | 48 | "job": "spiral.app.job.TestJob" |
@@ -69,7 +70,8 @@ discard block |
||
69 | 70 | $this->app->getContainer()->bind(Worker::class, $w); |
70 | 71 | |
71 | 72 | $w->shouldReceive('receive')->once()->with( |
72 | - \Mockery::on(function (&$context) { |
|
73 | + \Mockery::on(function (&$context) |
|
74 | + { |
|
73 | 75 | $context = '{ |
74 | 76 | "id": "1", |
75 | 77 | "job": "spiral.app.job.ErrorJob" |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | public function testSetSid(): void |
20 | 20 | { |
21 | - $this->http->setHandler(function () { |
|
21 | + $this->http->setHandler(function (){ |
|
22 | 22 | return ++$this->session()->getSection('cli')->value; |
23 | 23 | }); |
24 | 24 | |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | public function testSessionResume(): void |
34 | 34 | { |
35 | - $this->http->setHandler(function () { |
|
35 | + $this->http->setHandler(function (){ |
|
36 | 36 | return ++$this->session()->getSection('cli')->value; |
37 | 37 | }); |
38 | 38 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | public function testSessionRegenerateId(): void |
58 | 58 | { |
59 | - $this->http->setHandler(function () { |
|
59 | + $this->http->setHandler(function (){ |
|
60 | 60 | return ++$this->session()->getSection('cli')->value; |
61 | 61 | }); |
62 | 62 | |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | $this->assertSame(200, $result->getStatusCode()); |
74 | 74 | $this->assertSame('2', $result->getBody()->__toString()); |
75 | 75 | |
76 | - $this->http->setHandler(function () { |
|
76 | + $this->http->setHandler(function (){ |
|
77 | 77 | $this->session()->regenerateID(false); |
78 | 78 | |
79 | 79 | return ++$this->session()->getSection('cli')->value; |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | |
93 | 93 | public function testDestroySession(): void |
94 | 94 | { |
95 | - $this->http->setHandler(function () { |
|
95 | + $this->http->setHandler(function (){ |
|
96 | 96 | return ++$this->session()->getSection('cli')->value; |
97 | 97 | }); |
98 | 98 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | ]); |
106 | 106 | $this->assertSame(200, $result->getStatusCode()); |
107 | 107 | $this->assertSame('2', $result->getBody()->__toString()); |
108 | - $this->http->setHandler(function () { |
|
108 | + $this->http->setHandler(function (){ |
|
109 | 109 | $this->session()->destroy(); |
110 | 110 | $this->assertFalse($this->session()->isStarted()); |
111 | 111 |
@@ -18,7 +18,8 @@ discard block |
||
18 | 18 | { |
19 | 19 | public function testSetSid(): void |
20 | 20 | { |
21 | - $this->http->setHandler(function () { |
|
21 | + $this->http->setHandler(function () |
|
22 | + { |
|
22 | 23 | return ++$this->session()->getSection('cli')->value; |
23 | 24 | }); |
24 | 25 | |
@@ -32,7 +33,8 @@ discard block |
||
32 | 33 | |
33 | 34 | public function testSessionResume(): void |
34 | 35 | { |
35 | - $this->http->setHandler(function () { |
|
36 | + $this->http->setHandler(function () |
|
37 | + { |
|
36 | 38 | return ++$this->session()->getSection('cli')->value; |
37 | 39 | }); |
38 | 40 | |
@@ -56,7 +58,8 @@ discard block |
||
56 | 58 | |
57 | 59 | public function testSessionRegenerateId(): void |
58 | 60 | { |
59 | - $this->http->setHandler(function () { |
|
61 | + $this->http->setHandler(function () |
|
62 | + { |
|
60 | 63 | return ++$this->session()->getSection('cli')->value; |
61 | 64 | }); |
62 | 65 | |
@@ -73,7 +76,8 @@ discard block |
||
73 | 76 | $this->assertSame(200, $result->getStatusCode()); |
74 | 77 | $this->assertSame('2', $result->getBody()->__toString()); |
75 | 78 | |
76 | - $this->http->setHandler(function () { |
|
79 | + $this->http->setHandler(function () |
|
80 | + { |
|
77 | 81 | $this->session()->regenerateID(false); |
78 | 82 | |
79 | 83 | return ++$this->session()->getSection('cli')->value; |
@@ -92,7 +96,8 @@ discard block |
||
92 | 96 | |
93 | 97 | public function testDestroySession(): void |
94 | 98 | { |
95 | - $this->http->setHandler(function () { |
|
99 | + $this->http->setHandler(function () |
|
100 | + { |
|
96 | 101 | return ++$this->session()->getSection('cli')->value; |
97 | 102 | }); |
98 | 103 | |
@@ -105,7 +110,8 @@ discard block |
||
105 | 110 | ]); |
106 | 111 | $this->assertSame(200, $result->getStatusCode()); |
107 | 112 | $this->assertSame('2', $result->getBody()->__toString()); |
108 | - $this->http->setHandler(function () { |
|
113 | + $this->http->setHandler(function () |
|
114 | + { |
|
109 | 115 | $this->session()->destroy(); |
110 | 116 | $this->assertFalse($this->session()->isStarted()); |
111 | 117 |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | public function setUp(): void |
27 | 27 | { |
28 | - $this->bufferEmitter = new class() implements EmitterInterface { |
|
28 | + $this->bufferEmitter = new class() implements EmitterInterface{ |
|
29 | 29 | public $response; |
30 | 30 | |
31 | 31 | public function emit(ResponseInterface $response): bool |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $e = $this->bufferEmitter; |
60 | 60 | |
61 | 61 | $files = $this->app->get(FilesInterface::class)->getFiles( |
62 | - $this->app->get(DirectoriesInterface::class)->get('runtime') . '/snapshots/' |
|
62 | + $this->app->get(DirectoriesInterface::class)->get('runtime').'/snapshots/' |
|
63 | 63 | ); |
64 | 64 | |
65 | 65 | $this->assertCount(0, $files); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $this->app->get(SapiDispatcher::class)->serve($e); |
69 | 69 | |
70 | 70 | $files = $this->app->get(FilesInterface::class)->getFiles( |
71 | - $this->app->get(DirectoriesInterface::class)->get('runtime') . '/snapshots/' |
|
71 | + $this->app->get(DirectoriesInterface::class)->get('runtime').'/snapshots/' |
|
72 | 72 | ); |
73 | 73 | |
74 | 74 | $this->assertCount(1, $files); |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | ]); |
86 | 86 | |
87 | 87 | $files = $app->get(FilesInterface::class)->getFiles( |
88 | - $app->get(DirectoriesInterface::class)->get('runtime') . '/snapshots/' |
|
88 | + $app->get(DirectoriesInterface::class)->get('runtime').'/snapshots/' |
|
89 | 89 | ); |
90 | 90 | |
91 | 91 | $this->assertCount(0, $files); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | $app->get(SapiDispatcher::class)->serve($e); |
95 | 95 | |
96 | 96 | $files = $app->get(FilesInterface::class)->getFiles( |
97 | - $app->get(DirectoriesInterface::class)->get('runtime') . '/snapshots/' |
|
97 | + $app->get(DirectoriesInterface::class)->get('runtime').'/snapshots/' |
|
98 | 98 | ); |
99 | 99 | |
100 | 100 | $this->assertCount(1, $files); |
@@ -25,7 +25,8 @@ |
||
25 | 25 | |
26 | 26 | public function setUp(): void |
27 | 27 | { |
28 | - $this->bufferEmitter = new class() implements EmitterInterface { |
|
28 | + $this->bufferEmitter = new class() implements EmitterInterface |
|
29 | + { |
|
29 | 30 | public $response; |
30 | 31 | |
31 | 32 | public function emit(ResponseInterface $response): bool |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | string $domain = null, |
119 | 119 | bool $secure = null, |
120 | 120 | bool $httpOnly = true |
121 | - ) { |
|
121 | + ){ |
|
122 | 122 | $this->getCookieQueue()->set($name, $value, $lifetime, $path, $domain, $secure, $httpOnly); |
123 | 123 | |
124 | 124 | return $this; |
@@ -169,9 +169,9 @@ discard block |
||
169 | 169 | */ |
170 | 170 | private function getRequest(): ServerRequestInterface |
171 | 171 | { |
172 | - try { |
|
172 | + try{ |
|
173 | 173 | return $this->container->get(ServerRequestInterface::class); |
174 | - } catch (NotFoundExceptionInterface $e) { |
|
174 | + }catch (NotFoundExceptionInterface $e){ |
|
175 | 175 | throw new ScopeException('Unable to receive active request', $e->getCode(), $e); |
176 | 176 | } |
177 | 177 | } |
@@ -183,9 +183,9 @@ discard block |
||
183 | 183 | */ |
184 | 184 | private function getCookieQueue(): CookieQueue |
185 | 185 | { |
186 | - try { |
|
186 | + try{ |
|
187 | 187 | return $this->container->get(CookieQueue::class); |
188 | - } catch (NotFoundExceptionInterface $e) { |
|
188 | + }catch (NotFoundExceptionInterface $e){ |
|
189 | 189 | throw new ScopeException('Unable to receive cookie queue, invalid request scope', $e->getCode(), $e); |
190 | 190 | } |
191 | 191 | } |
@@ -169,9 +169,12 @@ discard block |
||
169 | 169 | */ |
170 | 170 | private function getRequest(): ServerRequestInterface |
171 | 171 | { |
172 | - try { |
|
172 | + try |
|
173 | + { |
|
173 | 174 | return $this->container->get(ServerRequestInterface::class); |
174 | - } catch (NotFoundExceptionInterface $e) { |
|
175 | + } |
|
176 | + catch (NotFoundExceptionInterface $e) |
|
177 | + { |
|
175 | 178 | throw new ScopeException('Unable to receive active request', $e->getCode(), $e); |
176 | 179 | } |
177 | 180 | } |
@@ -183,9 +186,12 @@ discard block |
||
183 | 186 | */ |
184 | 187 | private function getCookieQueue(): CookieQueue |
185 | 188 | { |
186 | - try { |
|
189 | + try |
|
190 | + { |
|
187 | 191 | return $this->container->get(CookieQueue::class); |
188 | - } catch (NotFoundExceptionInterface $e) { |
|
192 | + } |
|
193 | + catch (NotFoundExceptionInterface $e) |
|
194 | + { |
|
189 | 195 | throw new ScopeException('Unable to receive cookie queue, invalid request scope', $e->getCode(), $e); |
190 | 196 | } |
191 | 197 | } |
@@ -94,9 +94,9 @@ |
||
94 | 94 | */ |
95 | 95 | private function getAuthContext(): AuthContextInterface |
96 | 96 | { |
97 | - try { |
|
97 | + try{ |
|
98 | 98 | return $this->container->get(AuthContextInterface::class); |
99 | - } catch (NotFoundExceptionInterface $e) { |
|
99 | + }catch (NotFoundExceptionInterface $e){ |
|
100 | 100 | throw new ScopeException('Unable to resolve auth context, invalid scope', $e->getCode(), $e); |
101 | 101 | } |
102 | 102 | } |
@@ -94,9 +94,12 @@ |
||
94 | 94 | */ |
95 | 95 | private function getAuthContext(): AuthContextInterface |
96 | 96 | { |
97 | - try { |
|
97 | + try |
|
98 | + { |
|
98 | 99 | return $this->container->get(AuthContextInterface::class); |
99 | - } catch (NotFoundExceptionInterface $e) { |
|
100 | + } |
|
101 | + catch (NotFoundExceptionInterface $e) |
|
102 | + { |
|
100 | 103 | throw new ScopeException('Unable to resolve auth context, invalid scope', $e->getCode(), $e); |
101 | 104 | } |
102 | 105 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | PermissionsInterface $permissions, |
42 | 42 | ContainerInterface $actorScope, |
43 | 43 | array $roles = [] |
44 | - ) { |
|
44 | + ){ |
|
45 | 45 | $this->roles = $roles; |
46 | 46 | $this->container = $actorScope; |
47 | 47 | $this->permissions = $permissions; |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | public function allows(string $permission, array $context = []): bool |
56 | 56 | { |
57 | 57 | $allows = false; |
58 | - foreach ($this->getRoles() as $role) { |
|
59 | - if (!$this->permissions->hasRole($role)) { |
|
58 | + foreach ($this->getRoles() as $role){ |
|
59 | + if (!$this->permissions->hasRole($role)){ |
|
60 | 60 | continue; |
61 | 61 | } |
62 | 62 | |
@@ -103,13 +103,13 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function getActor(): ActorInterface |
105 | 105 | { |
106 | - if (!is_null($this->actor)) { |
|
106 | + if (!is_null($this->actor)){ |
|
107 | 107 | return $this->actor; |
108 | 108 | } |
109 | 109 | |
110 | - try { |
|
110 | + try{ |
|
111 | 111 | return $this->container->get(ActorInterface::class); |
112 | - } catch (NotFoundExceptionInterface $e) { |
|
112 | + }catch (NotFoundExceptionInterface $e){ |
|
113 | 113 | throw new ScopeException('Unable to resolve Actor from the scope', $e->getCode(), $e); |
114 | 114 | } |
115 | 115 | } |
@@ -55,8 +55,10 @@ discard block |
||
55 | 55 | public function allows(string $permission, array $context = []): bool |
56 | 56 | { |
57 | 57 | $allows = false; |
58 | - foreach ($this->getRoles() as $role) { |
|
59 | - if (!$this->permissions->hasRole($role)) { |
|
58 | + foreach ($this->getRoles() as $role) |
|
59 | + { |
|
60 | + if (!$this->permissions->hasRole($role)) |
|
61 | + { |
|
60 | 62 | continue; |
61 | 63 | } |
62 | 64 | |
@@ -103,13 +105,17 @@ discard block |
||
103 | 105 | */ |
104 | 106 | public function getActor(): ActorInterface |
105 | 107 | { |
106 | - if (!is_null($this->actor)) { |
|
108 | + if (!is_null($this->actor)) |
|
109 | + { |
|
107 | 110 | return $this->actor; |
108 | 111 | } |
109 | 112 | |
110 | - try { |
|
113 | + try |
|
114 | + { |
|
111 | 115 | return $this->container->get(ActorInterface::class); |
112 | - } catch (NotFoundExceptionInterface $e) { |
|
116 | + } |
|
117 | + catch (NotFoundExceptionInterface $e) |
|
118 | + { |
|
113 | 119 | throw new ScopeException('Unable to resolve Actor from the scope', $e->getCode(), $e); |
114 | 120 | } |
115 | 121 | } |
@@ -87,8 +87,8 @@ |
||
87 | 87 | $registry = new TransportRegistry(); |
88 | 88 | $registry->setDefaultTransport($config->getDefaultTransport()); |
89 | 89 | |
90 | - foreach ($config->getTransports() as $name => $transport) { |
|
91 | - if ($transport instanceof Autowire) { |
|
90 | + foreach ($config->getTransports() as $name => $transport){ |
|
91 | + if ($transport instanceof Autowire){ |
|
92 | 92 | $transport = $transport->resolve($factory); |
93 | 93 | } |
94 | 94 |
@@ -87,8 +87,10 @@ |
||
87 | 87 | $registry = new TransportRegistry(); |
88 | 88 | $registry->setDefaultTransport($config->getDefaultTransport()); |
89 | 89 | |
90 | - foreach ($config->getTransports() as $name => $transport) { |
|
91 | - if ($transport instanceof Autowire) { |
|
90 | + foreach ($config->getTransports() as $name => $transport) |
|
91 | + { |
|
92 | + if ($transport instanceof Autowire) |
|
93 | + { |
|
92 | 94 | $transport = $transport->resolve($factory); |
93 | 95 | } |
94 | 96 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | private function actor(AuthContextInterface $context): ActorInterface |
39 | 39 | { |
40 | 40 | $actor = $context->getActor(); |
41 | - if ($actor instanceof ActorInterface) { |
|
41 | + if ($actor instanceof ActorInterface){ |
|
42 | 42 | return $actor; |
43 | 43 | } |
44 | 44 |
@@ -38,7 +38,8 @@ |
||
38 | 38 | private function actor(AuthContextInterface $context): ActorInterface |
39 | 39 | { |
40 | 40 | $actor = $context->getActor(); |
41 | - if ($actor instanceof ActorInterface) { |
|
41 | + if ($actor instanceof ActorInterface) |
|
42 | + { |
|
42 | 43 | return $actor; |
43 | 44 | } |
44 | 45 |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | CookiesConfig $cookiesConfig, |
61 | 61 | SessionFactory $factory, |
62 | 62 | ScopeInterface $scope |
63 | - ) { |
|
63 | + ){ |
|
64 | 64 | $this->config = $config; |
65 | 65 | $this->httpConfig = $httpConfig; |
66 | 66 | $this->cookiesConfig = $cookiesConfig; |
@@ -79,14 +79,14 @@ discard block |
||
79 | 79 | $this->fetchID($request) |
80 | 80 | ); |
81 | 81 | |
82 | - try { |
|
82 | + try{ |
|
83 | 83 | $response = $this->scope->runScope( |
84 | 84 | [SessionInterface::class => $session], |
85 | 85 | function () use ($handler, $request, $session) { |
86 | 86 | return $handler->handle($request->withAttribute(static::ATTRIBUTE, $session)); |
87 | 87 | } |
88 | 88 | ); |
89 | - } catch (\Throwable $e) { |
|
89 | + }catch (\Throwable $e){ |
|
90 | 90 | $session->abort(); |
91 | 91 | throw $e; |
92 | 92 | } |
@@ -105,14 +105,14 @@ discard block |
||
105 | 105 | Request $request, |
106 | 106 | Response $response |
107 | 107 | ): Response { |
108 | - if (!$session->isStarted()) { |
|
108 | + if (!$session->isStarted()){ |
|
109 | 109 | return $response; |
110 | 110 | } |
111 | 111 | |
112 | 112 | $session->commit(); |
113 | 113 | |
114 | 114 | //SID changed |
115 | - if ($this->fetchID($request) != $session->getID()) { |
|
115 | + if ($this->fetchID($request) != $session->getID()){ |
|
116 | 116 | return $this->withCookie($request, $response, $session->getID()); |
117 | 117 | } |
118 | 118 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | protected function fetchID(Request $request): ?string |
130 | 130 | { |
131 | 131 | $cookies = $request->getCookieParams(); |
132 | - if (empty($cookies[$this->config->getCookie()])) { |
|
132 | + if (empty($cookies[$this->config->getCookie()])){ |
|
133 | 133 | return null; |
134 | 134 | } |
135 | 135 | |
@@ -162,8 +162,8 @@ discard block |
||
162 | 162 | protected function clientSignature(Request $request): string |
163 | 163 | { |
164 | 164 | $signature = ''; |
165 | - foreach (static::SIGNATURE_HEADERS as $header) { |
|
166 | - $signature .= $request->getHeaderLine($header) . ';'; |
|
165 | + foreach (static::SIGNATURE_HEADERS as $header){ |
|
166 | + $signature .= $request->getHeaderLine($header).';'; |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | return hash('sha256', $signature); |
@@ -79,14 +79,18 @@ discard block |
||
79 | 79 | $this->fetchID($request) |
80 | 80 | ); |
81 | 81 | |
82 | - try { |
|
82 | + try |
|
83 | + { |
|
83 | 84 | $response = $this->scope->runScope( |
84 | 85 | [SessionInterface::class => $session], |
85 | - function () use ($handler, $request, $session) { |
|
86 | + function () use ($handler, $request, $session) |
|
87 | + { |
|
86 | 88 | return $handler->handle($request->withAttribute(static::ATTRIBUTE, $session)); |
87 | 89 | } |
88 | 90 | ); |
89 | - } catch (\Throwable $e) { |
|
91 | + } |
|
92 | + catch (\Throwable $e) |
|
93 | + { |
|
90 | 94 | $session->abort(); |
91 | 95 | throw $e; |
92 | 96 | } |
@@ -105,14 +109,16 @@ discard block |
||
105 | 109 | Request $request, |
106 | 110 | Response $response |
107 | 111 | ): Response { |
108 | - if (!$session->isStarted()) { |
|
112 | + if (!$session->isStarted()) |
|
113 | + { |
|
109 | 114 | return $response; |
110 | 115 | } |
111 | 116 | |
112 | 117 | $session->commit(); |
113 | 118 | |
114 | 119 | //SID changed |
115 | - if ($this->fetchID($request) != $session->getID()) { |
|
120 | + if ($this->fetchID($request) != $session->getID()) |
|
121 | + { |
|
116 | 122 | return $this->withCookie($request, $response, $session->getID()); |
117 | 123 | } |
118 | 124 | |
@@ -129,7 +135,8 @@ discard block |
||
129 | 135 | protected function fetchID(Request $request): ?string |
130 | 136 | { |
131 | 137 | $cookies = $request->getCookieParams(); |
132 | - if (empty($cookies[$this->config->getCookie()])) { |
|
138 | + if (empty($cookies[$this->config->getCookie()])) |
|
139 | + { |
|
133 | 140 | return null; |
134 | 141 | } |
135 | 142 | |
@@ -162,7 +169,8 @@ discard block |
||
162 | 169 | protected function clientSignature(Request $request): string |
163 | 170 | { |
164 | 171 | $signature = ''; |
165 | - foreach (static::SIGNATURE_HEADERS as $header) { |
|
172 | + foreach (static::SIGNATURE_HEADERS as $header) |
|
173 | + { |
|
166 | 174 | $signature .= $request->getHeaderLine($header) . ';'; |
167 | 175 | } |
168 | 176 |