@@ -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; |
@@ -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 | /** |