Maintain local ⭤ remote in sync with automatic AT Protocol parity for Laravel (alpha & unstable)
at dev 371 B view raw
1<?php 2 3namespace SocialDept\AtpParity\Events; 4 5use Illuminate\Database\Eloquent\Model; 6use Illuminate\Foundation\Events\Dispatchable; 7 8/** 9 * Dispatched when a model is unpublished from AT Protocol. 10 */ 11class RecordUnpublished 12{ 13 use Dispatchable; 14 15 public function __construct( 16 public readonly Model $model, 17 public readonly string $uri, 18 ) {} 19}