Passed
Push — master ( effb91...3e9a54 )
by Reza
04:04
created
src/Commands/UserActions/DeleteAdmin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         $user = $this->argument('user');
17 17
 
18
-        if($this->askResult($user)){
18
+        if ($this->askResult($user)) {
19 19
             UserProviderFacade::deleteAdmin($user);
20 20
             $this->info('Admin was removed successfully');
21 21
             return;
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function askResult($user)
28 28
     {
29
-        if($this->option('force')) {
29
+        if ($this->option('force')) {
30 30
             return true;
31 31
         }
32 32
 
Please login to merge, or discard this patch.