@@ -52,7 +52,7 @@ |
||
52 | 52 | 'email' => $this->argument('email') ? $this->argument('user_id') : $this->ask('User email?'), |
53 | 53 | ]); |
54 | 54 | } catch (Exception $e) { |
55 | - $this->error('error'.$e); |
|
55 | + $this->error('error' . $e); |
|
56 | 56 | } |
57 | 57 | $this->info('User has been edited succesfully'); |
58 | 58 |
@@ -47,7 +47,7 @@ |
||
47 | 47 | |
48 | 48 | $this->table($headers, $tasks); |
49 | 49 | } catch (exception $e) { |
50 | - $this->error('Error: '.$e); |
|
50 | + $this->error('Error: ' . $e); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | } |
@@ -45,7 +45,7 @@ |
||
45 | 45 | 'password' => $this->argument('password') ? $this->argument('password') : $this->ask('User password?'), |
46 | 46 | ]); |
47 | 47 | } catch (Exception $e) { |
48 | - $this->error('error'.$e); |
|
48 | + $this->error('error' . $e); |
|
49 | 49 | } |
50 | 50 | |
51 | 51 | $this->info('User has been added to database succesfully'); |
@@ -42,11 +42,11 @@ |
||
42 | 42 | $id = $this->argument('id') ? $this->argument('id') : $this->ask('User id?'); |
43 | 43 | $count = User::destroy($id); |
44 | 44 | } catch (Exception $e) { |
45 | - $this->error('error'.$e); |
|
45 | + $this->error('error' . $e); |
|
46 | 46 | } |
47 | 47 | if ($count == 0) { |
48 | 48 | $this->alert('User does not exist'); |
49 | - } else { |
|
49 | + }else { |
|
50 | 50 | $this->info('User has been deleted to database succesfully'); |
51 | 51 | } |
52 | 52 | } |
@@ -56,7 +56,7 @@ |
||
56 | 56 | ]; |
57 | 57 | $this->table($headers, $info); |
58 | 58 | } catch (Exception $e) { |
59 | - $this->error('error'.$e); |
|
59 | + $this->error('error' . $e); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | } |