@@ -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 | /** |
@@ -84,7 +84,7 @@ |
||
| 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 | /** |