@@ -255,7 +255,7 @@ |
||
255 | 255 | |
256 | 256 | $actions = $this->getActions(); |
257 | 257 | |
258 | - return array_map(function (MessageActionContract $action) { |
|
258 | + return array_map(function(MessageActionContract $action) { |
|
259 | 259 | return $action->toArray(); |
260 | 260 | }, $actions); |
261 | 261 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | $this->app->bind(P256EncryptedMessageBuilderContract::class, P256EncryptedMessageBuilder::class); |
26 | 26 | $this->app->bind(P256EncryptedMessageContract::class, P256EncryptedMessage::class); |
27 | 27 | $this->app->bind(JWTGeneratorContract::class, JWTGenerator::class); |
28 | - $this->app->bind(EC::class, static function () { |
|
28 | + $this->app->bind(EC::class, static function() { |
|
29 | 29 | return new EC('p256'); |
30 | 30 | }); |
31 | 31 |
@@ -32,7 +32,7 @@ |
||
32 | 32 | */ |
33 | 33 | public function __toString(): string |
34 | 34 | { |
35 | - return (string)$this->toJson(); |
|
35 | + return (string) $this->toJson(); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |