mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
14 lines
258 B
PHP
Executable File
14 lines
258 B
PHP
Executable File
<?php
|
|
|
|
namespace App\SSH\Services\Webserver;
|
|
|
|
use App\Models\Service;
|
|
use App\SSH\Services\ServiceInterface;
|
|
|
|
abstract class AbstractWebserver implements ServiceInterface, Webserver
|
|
{
|
|
public function __construct(protected Service $service)
|
|
{
|
|
}
|
|
}
|