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