Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php namespace JobApis\JobsToMail\Jobs\Users; |
||
28 | 2 | public function handle(UserRepositoryInterface $users) |
|
29 | { |
||
30 | 2 | if ($users->delete($this->userId)) { |
|
31 | 1 | return new FlashMessage( |
|
32 | 1 | 'alert-success', |
|
33 | 1 | 'Your account has been cancelled. You will no longer receive any emails from us.' |
|
34 | ); |
||
35 | } |
||
36 | 1 | return new FlashMessage( |
|
37 | 1 | 'alert-danger', |
|
38 | 1 | 'We couldn\'t unsubscribe you. Please try again later or contact us.' |
|
39 | ); |
||
40 | } |
||
41 | } |
||
42 |