Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
60 | public function setDestroyed() |
||
61 | { |
||
62 | $deadmanList = User::where('status', '!=', 'active') |
||
63 | ->where('destroyed_date', '<=', Carbon::today()) |
||
64 | ->get(); |
||
65 | |||
66 | foreach ($deadmanList as $user) { |
||
67 | Storage::deleteDirectory('user_'.$user->id); |
||
68 | $user->delete(); |
||
69 | } |
||
70 | |||
71 | $this->destroyed = $deadmanList; |
||
72 | } |
||
73 | } |
||
74 |