Passed
Push — main ( abebdb...9c1f0d )
by ikechukwu
09:14 queued 02:52
created
Tests/TestCase.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
     public function setUp(): void
17 17
     {
18
-      parent::setUp();
18
+        parent::setUp();
19 19
     }
20 20
 
21 21
     protected function defineDatabaseMigrations()
Please login to merge, or discard this patch.
Tests/PinTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     use WithFaker;
17 17
 
18
-   /**
18
+    /**
19 19
      * A basic feature test example.
20 20
      *
21 21
      * @return void
Please login to merge, or discard this patch.
src/Services/PinService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
                 ? $this->httpResponse($request,
81 81
                     trans('requirepin::general.fail'), 400,
82 82
                     ['message' => trans('requirepin::pin.not_allowed')]
83
-                  )
83
+                    )
84 84
                 : redirect($requirePin->redirect_to)->with('return_payload',
85 85
                     session('return_payload'));
86 86
         }
Please login to merge, or discard this patch.