mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
17 lines
287 B
PHP
Executable File
17 lines
287 B
PHP
Executable File
<?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;
|
|
}
|
|
}
|