1 | <?php |
||
19 | class RemoveTempDirectoriesStep implements Step { |
||
20 | /** |
||
21 | * Platform. |
||
22 | * |
||
23 | * @var Platform |
||
24 | */ |
||
25 | protected $platform; |
||
26 | |||
27 | /** |
||
28 | * Initialiser. |
||
29 | * |
||
30 | * @param Platform $platform |
||
31 | */ |
||
32 | public function __construct(Platform $platform) { |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc Platform |
||
38 | */ |
||
39 | public function execute($task, LoggerInterface $logger) { |
||
43 | } |
||
44 |