Files
keystone/app/Drivers/Driver.php
2025-03-31 15:29:07 +00:00

15 lines
255 B
PHP

<?php
namespace App\Drivers;
use App\Data\Deployments\Plan;
interface Driver
{
public Plan $deploymentPlan { get; }
public function __construct(
public ?string $containerName = null,
public ?string $containerId = null,
);
}