1 | <?php |
||
8 | trait Clearable |
||
9 | { |
||
10 | /** |
||
11 | * @var Cleanup |
||
12 | */ |
||
13 | protected $cleanupConfig; |
||
14 | |||
15 | /** |
||
16 | * @var Cleaner |
||
17 | */ |
||
18 | protected $cleaner; |
||
19 | |||
20 | /** |
||
21 | * Check sync clean configuration entities and set up a proper cleaner |
||
22 | * |
||
23 | * @param array $options |
||
24 | * @throws \phpbu\App\Exception |
||
25 | */ |
||
26 | public function setUpClearable(array $options) |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | public function getSimulateInfo(): string |
||
55 | } |