Maintain local ⭤ remote in sync with automatic AT Protocol parity for Laravel (alpha & unstable)
1<?php
2
3namespace SocialDept\AtpParity\Events;
4
5use Illuminate\Foundation\Events\Dispatchable;
6
7class ImportProgress
8{
9 use Dispatchable;
10
11 public function __construct(
12 public readonly string $did,
13 public readonly string $collection,
14 public readonly int $recordsSynced,
15 public readonly ?string $cursor = null,
16 ) {}
17}