Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | abstract class CleanupStrategy |
||
9 | { |
||
10 | /** |
||
11 | * @var \Illuminate\Contracts\Config\Repository |
||
12 | */ |
||
13 | protected $config; |
||
14 | |||
15 | /** |
||
16 | * Create a new cleanup strategy instance. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function __construct(Repository $config) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Execute cleanup strategy. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | abstract public function execute(Collection $users); |
||
31 | } |
||
32 |