Passed
Branch main (741c69)
by Justin
05:14 queued 58s
created
src/OptionBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      */
95 95
     public function hasMode(int $mode): bool
96 96
     {
97
-        return ($this->mode & $mode) ? true : false;
97
+        return ($this->mode&$mode) ? true : false;
98 98
     }
99 99
 
100 100
     /**
Please login to merge, or discard this patch.
src/Contracts/Interceptor.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      * @param Application $app The symfony console application
85 85
      *
86 86
      * @return Interceptor
87
-    */
87
+     */
88 88
     public function starting(Application $app): Interceptor;
89 89
 
90 90
     /**
Please login to merge, or discard this patch.
tests/Unit/HandlerStackTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $this->assertTrue(!$this->stack->empty());
32 32
     }
33 33
    
34
-   public function test_flush(): void
34
+    public function test_flush(): void
35 35
     {
36 36
         $this->stack->push(new CallbackHandler(
37 37
             fn() => []
Please login to merge, or discard this patch.
tests/Feature/InterceptorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
             ->required()
55 55
             ->get();
56 56
 
57
-        ArtisanInterceptor::addOptions([ $inputOption1, $inputOption2 ]);
57
+        ArtisanInterceptor::addOptions([$inputOption1, $inputOption2]);
58 58
         
59 59
         // Call a command to start the interceptor
60 60
         $this->artisan('list');
Please login to merge, or discard this patch.