@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | $user = $this->argument('user'); |
20 | 20 | |
21 | - if($this->askResult($user)){ |
|
21 | + if ($this->askResult($user)) { |
|
22 | 22 | UserProviderFacade::deleteAdmin($user); |
23 | 23 | $this->info('Admin was removed successfully'); |
24 | 24 | return; |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | public function askResult($user) |
31 | 31 | { |
32 | - if($this->option('force')) { |
|
32 | + if ($this->option('force')) { |
|
33 | 33 | return true; |
34 | 34 | } |
35 | 35 | $result = $this->confirm("Do you want to remove {$user} from administration", 'yes'); |