1 | <?php |
||
11 | class Delete extends Task |
||
12 | { |
||
13 | /** |
||
14 | * {@inheritdoc} |
||
15 | */ |
||
16 | protected $name = 'delete'; |
||
17 | /** |
||
18 | * @var string Dest path |
||
19 | */ |
||
20 | protected $destPath; |
||
21 | |||
22 | /** |
||
23 | * Get dest path |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | 2 | public function getDestPath() |
|
31 | |||
32 | /** |
||
33 | * Set dest path |
||
34 | * |
||
35 | * @param string $destPath |
||
36 | */ |
||
37 | 2 | public function setDestPath($destPath) |
|
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | 2 | public function getMessageSuccess() |
|
49 | } |
||
50 |