@@ -51,7 +51,7 @@ |
||
51 | 51 | |
52 | 52 | public function hasMode(int $mode): bool |
53 | 53 | { |
54 | - return $this->mode & $mode; |
|
54 | + return $this->mode&$mode; |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | protected function removeMode(int $mode): OptionBuilder |
@@ -84,12 +84,12 @@ |
||
84 | 84 | return $this; |
85 | 85 | } |
86 | 86 | |
87 | - /** |
|
88 | - * Add a handler or callable to run on artisan start |
|
89 | - * |
|
90 | - * @param callable|ArtisanHandler $callable |
|
91 | - * @return InterceptorContract |
|
92 | - */ |
|
87 | + /** |
|
88 | + * Add a handler or callable to run on artisan start |
|
89 | + * |
|
90 | + * @param callable|ArtisanHandler $callable |
|
91 | + * @return InterceptorContract |
|
92 | + */ |
|
93 | 93 | public function start(callable|ArtisanHandler $callable): InterceptorContract |
94 | 94 | { |
95 | 95 | $handler = $callable; |