@@ -53,11 +53,11 @@ |
||
| 53 | 53 | $password = $this->option('password'); |
| 54 | 54 | $password_confirmation = $this->option('password_confirmation'); |
| 55 | 55 | |
| 56 | - if (! $password) { |
|
| 56 | + if (!$password) { |
|
| 57 | 57 | $password = $this->secret('What password should the user have?'); |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | - if (! $password_confirmation) { |
|
| 60 | + if (!$password_confirmation) { |
|
| 61 | 61 | $password_confirmation = $this->secret('Please confirm the password.'); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | $device = Device::find($id); |
| 68 | 68 | |
| 69 | - if (! $device) { |
|
| 69 | + if (!$device) { |
|
| 70 | 70 | return $this->respondNotFound('Did not find the device you are looking for!'); |
| 71 | 71 | } |
| 72 | 72 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | { |
| 88 | 88 | $device = Device::find($id); |
| 89 | 89 | |
| 90 | - if (! $device) { |
|
| 90 | + if (!$device) { |
|
| 91 | 91 | return $this->respondNotFound('Did not find the device you are looking for!'); |
| 92 | 92 | } |
| 93 | 93 | |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | { |
| 112 | 112 | $device = Device::find($id); |
| 113 | 113 | |
| 114 | - if (! $device) { |
|
| 114 | + if (!$device) { |
|
| 115 | 115 | return $this->respondNotFound('Did not find the device you are looking for!'); |
| 116 | 116 | } |
| 117 | 117 | |