Passed
Branch master (a04b7c)
by nassim
03:39
created
Category
src/Middleware/ValidateSignedUrl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     {
19 19
         $urlIsSigned = app('signed-url')->validate($request->fullUrl());
20 20
 
21
-        if (! $urlIsSigned) {
21
+        if (!$urlIsSigned) {
22 22
             abort(403);
23 23
         }
24 24
 
Please login to merge, or discard this patch.
src/Provider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
             __DIR__ . '/Config/signed-url.php' => config_path('signed-url.php')
19 19
         ], 'signed-url');
20 20
 
21
-        $this->app->singleton('signed-url', function () {
21
+        $this->app->singleton('signed-url', function() {
22 22
             return new SignedUrl();
23 23
         });
24 24
 
Please login to merge, or discard this patch.