Maintain local ⭤ remote in sync with automatic AT Protocol parity for Laravel (alpha & unstable)
at dev 278 B view raw
1<?php 2 3namespace SocialDept\AtpParity\Events; 4 5use Illuminate\Foundation\Events\Dispatchable; 6use SocialDept\AtpParity\Import\ImportResult; 7 8class ImportCompleted 9{ 10 use Dispatchable; 11 12 public function __construct( 13 public readonly ImportResult $result, 14 ) {} 15}