TenantAtlas/app/Services/Drift/DriftScopeKey.php
2026-01-13 23:48:16 +01:00

14 lines
213 B
PHP

<?php
namespace App\Services\Drift;
use App\Models\InventorySyncRun;
class DriftScopeKey
{
public function fromRun(InventorySyncRun $run): string
{
return (string) $run->selection_hash;
}
}