Passed
Push — master ( 5b8da2...228777 )
by Alex
05:59
created
src/LaravelWebPushServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/MessageAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.