| 1 | <?php |
||
| 21 | class ProgressData extends AbstractExtensibleModel implements ProgressDataInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @return int|null |
||
| 25 | */ |
||
| 26 | public function getCurrent() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param int $current |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function setCurrent(int $current): void |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return int|null |
||
| 42 | */ |
||
| 43 | public function getTotal() |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @param int $total |
||
| 50 | * @return void |
||
| 51 | */ |
||
| 52 | public function setTotal(int $total): void |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @return string|null |
||
| 59 | */ |
||
| 60 | public function getProcessType() |
||
| 64 | |||
| 65 | /** |
||
| 66 | * @param string $type |
||
| 67 | * @return void |
||
| 68 | */ |
||
| 69 | public function setProcessType(string $type): void |
||
| 73 | } |
||
| 74 |