@@ -94,7 +94,7 @@ |
||
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 | /** |
@@ -54,7 +54,7 @@ |
||
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'); |