14 lines
213 B
PHP
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;
|
|
}
|
|
}
|