16 lines
285 B
PHP
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'] ?? '');
|
|
}
|
|
}
|