TenantAtlas/apps/platform/app/Support/OpsUx/OperationRunUrl.php
Ahmed Darrazi 1123b122d9
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 7m13s
feat: cut over tenant core to managed environments
2026-05-07 08:35:42 +02:00

23 lines
481 B
PHP

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