| 1 | <?php |
||
| 11 | class Add extends Task |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * {@inheritdoc} |
||
| 15 | */ |
||
| 16 | protected $name = 'add'; |
||
| 17 | /** |
||
| 18 | * @var string Source path |
||
| 19 | */ |
||
| 20 | protected $sourcePath; |
||
| 21 | /** |
||
| 22 | * @var string Dest path |
||
| 23 | */ |
||
| 24 | protected $destPath; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get source path |
||
| 28 | * |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | 3 | public function getSourcePath() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * Set source path |
||
| 38 | * |
||
| 39 | * @param string $sourcePath |
||
| 40 | */ |
||
| 41 | 2 | public function setSourcePath($sourcePath) |
|
| 45 | |||
| 46 | /** |
||
| 47 | * Get dest path |
||
| 48 | * |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | 3 | public function getDestPath() |
|
| 55 | |||
| 56 | /** |
||
| 57 | * Set dest path |
||
| 58 | * |
||
| 59 | * @param string $destPath |
||
| 60 | */ |
||
| 61 | 2 | public function setDestPath($destPath) |
|
| 65 | |||
| 66 | /** |
||
| 67 | * {@inheritdoc} |
||
| 68 | */ |
||
| 69 | 2 | public function getMessageSuccess() |
|
| 73 | } |
||
| 74 |