TenantAtlas/app/Services/Drift/DriftScopeKey.php
2026-02-12 13:39:24 +01:00

16 lines
285 B
PHP

<?php
namespace App\Services\Drift;
use App\Models\OperationRun;
class DriftScopeKey
{
public function fromRun(OperationRun $run): string
{
$context = is_array($run->context) ? $run->context : [];
return (string) ($context['selection_hash'] ?? '');
}
}