mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 14:34:04 +00:00
16 lines
333 B
PHP
16 lines
333 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\ResourceSyncing\Events;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Stancl\Tenancy\ResourceSyncing\SyncMaster;
|
|
|
|
class SyncMasterDeleted
|
|
{
|
|
public function __construct(
|
|
public SyncMaster&Model $centralResource,
|
|
public bool $forceDelete = false,
|
|
) {}
|
|
}
|