| 1 | <?php |
||
| 14 | class ExecuteResult |
||
| 15 | { |
||
| 16 | protected $derived; |
||
| 17 | protected $removed; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Constructor. |
||
| 21 | * |
||
| 22 | * @param array $derived |
||
| 23 | * @param array $removed |
||
| 24 | */ |
||
| 25 | 3 | public function __construct(array $derived = array(), array $removed = array()) |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Sets derived files |
||
| 33 | * |
||
| 34 | * @param array $derived |
||
| 35 | * @return \Webcreate\Conveyor\Task\Result\ExecuteResult |
||
| 36 | */ |
||
| 37 | 3 | public function setDerived(array $derived) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * Gets derived files |
||
| 46 | * |
||
| 47 | * @return array |
||
| 48 | */ |
||
| 49 | public function getDerived() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * Sets removed files |
||
| 56 | * |
||
| 57 | * @param array $removed |
||
| 58 | * @return \Webcreate\Conveyor\Task\Result\ExecuteResult |
||
| 59 | */ |
||
| 60 | 3 | public function setRemoved(array $removed) |
|
| 66 | |||
| 67 | /** |
||
| 68 | * Gets removed files |
||
| 69 | * |
||
| 70 | * @return array |
||
| 71 | */ |
||
| 72 | public function getRemoved() |
||
| 76 | |||
| 77 | } |
||
| 78 |