| 1 | <?php |
||
| 5 | class Sync_Background_Process_Info { |
||
| 6 | |||
| 7 | public $started; |
||
| 8 | public $index; |
||
| 9 | public $count; |
||
| 10 | public $last_update; |
||
| 11 | public $state; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Sync_Model constructor. |
||
| 15 | * |
||
| 16 | * @param $started |
||
| 17 | * @param $index |
||
| 18 | * @param $count |
||
| 19 | * @param $last_update |
||
| 20 | * @param $state |
||
| 21 | */ |
||
| 22 | public function __construct( $state, $started = null, $index = null, $count = null, $last_update = null ) { |
||
| 29 | |||
| 30 | } |