diff --git a/src/Service/Indexer/IndexerProgressState.php b/src/Service/Indexer/IndexerProgressState.php index c5992d6..7e1ed17 100644 --- a/src/Service/Indexer/IndexerProgressState.php +++ b/src/Service/Indexer/IndexerProgressState.php @@ -59,15 +59,15 @@ public function start(int $total): void } $this->status = new IndexerStatus( - IndexerStatusState::RUNNING, - $startTime, - null, - $total, - 0, - 0, - new DateTime(), - 0, - 0 + state: IndexerStatusState::RUNNING, + startTime: $startTime, + endTime: null, + total: $total, + processed: 0, + skipped: 0, + lastUpdate: new DateTime(), + updated: 0, + errors: 0, ); $this->statusStore->store( $this->getStatusStoreKey(),