Total Complexity | 4 |
Total Lines | 52 |
Duplicated Lines | 0 % |
Coverage | 11.76% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class LogoutDiscourseUser implements ShouldQueue |
||
17 | { |
||
18 | /** |
||
19 | * @var Client |
||
20 | */ |
||
21 | public $client; |
||
22 | |||
23 | /** |
||
24 | * Create the event listener. |
||
25 | * |
||
26 | * @param Client $client |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | 1 | public function __construct(Client $client) |
|
33 | } |
||
34 | |||
35 | /** |
||
36 | * Handle the event. |
||
37 | * |
||
38 | * @param mixed $event |
||
39 | * |
||
40 | * @return void |
||
41 | */ |
||
42 | public function handle($event) |
||
72 |