23 lines
445 B
PHP
23 lines
445 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\OpsUx;
|
|
|
|
use App\Models\OperationRun;
|
|
use App\Models\Tenant;
|
|
use App\Support\OperationRunLinks;
|
|
|
|
final class OperationRunUrl
|
|
{
|
|
public static function view(OperationRun $run, Tenant $tenant): string
|
|
{
|
|
return OperationRunLinks::view($run, $tenant);
|
|
}
|
|
|
|
public static function index(Tenant $tenant): string
|
|
{
|
|
return OperationRunLinks::index($tenant);
|
|
}
|
|
}
|