mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-04 07:22:34 +00:00
init
This commit is contained in:
16
app/ServiceHandlers/Webserver/AbstractWebserver.php
Executable file
16
app/ServiceHandlers/Webserver/AbstractWebserver.php
Executable file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\ServiceHandlers\Webserver;
|
||||
|
||||
use App\Contracts\Webserver;
|
||||
use App\Models\Service;
|
||||
|
||||
abstract class AbstractWebserver implements Webserver
|
||||
{
|
||||
protected Service $service;
|
||||
|
||||
public function __construct(Service $service)
|
||||
{
|
||||
$this->service = $service;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user