@@ -52,7 +52,7 @@ |
||
| 52 | 52 | public function wrap(Closure $callback): Closure |
| 53 | 53 | { |
| 54 | 54 | return |
| 55 | - function (mixed ...$args) use ($callback): void { |
|
| 55 | + function(mixed ...$args) use ($callback): void { |
|
| 56 | 56 | $this->erase(); |
| 57 | 57 | $callback(...$args); |
| 58 | 58 | $this->render(); |
@@ -12,9 +12,9 @@ |
||
| 12 | 12 | use Closure; |
| 13 | 13 | |
| 14 | 14 | interface IDriver extends IObserver, |
| 15 | - ISubject, |
|
| 16 | - IRenderable, |
|
| 17 | - IHasInterval |
|
| 15 | + ISubject, |
|
| 16 | + IRenderable, |
|
| 17 | + IHasInterval |
|
| 18 | 18 | { |
| 19 | 19 | /** |
| 20 | 20 | * Adds spinner to the driver. |