wip caddy deployment
This commit is contained in:
18
app/Drivers/GatewayDriver.php
Normal file
18
app/Drivers/GatewayDriver.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Drivers;
|
||||
|
||||
use App\Models\Service;
|
||||
|
||||
abstract class GatewayDriver extends Driver
|
||||
{
|
||||
public ?string $containerName;
|
||||
|
||||
public ?string $containerId;
|
||||
|
||||
abstract public function __construct(
|
||||
?string $containerName = null,
|
||||
?string $containerId = null,
|
||||
?Service $service = null,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user