<?php
namespace App\SendingServers\Identities;
/**
* Result of one IdentitySyncService::sync() call. Tallies the diff
* outcomes. Used by admin UI to show "synced X identities (i=… u=… a=…)".
*/
final class SyncReport
{
public int $inserted = 0;
public int $updated = 0;
public int $archived = 0;
public function total(): int
{
return $this->inserted + $this->updated + $this->archived;
}
}