17 lines
305 B
PHP
17 lines
305 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Core;
|
|
|
|
use PDO;
|
|
|
|
/**
|
|
* Gemeinsames Interface für Database (MySQL) und DatabaseSqlite.
|
|
* Ermöglicht den Betrieb beider Backends ohne Type-Errors.
|
|
*/
|
|
interface DatabaseInterface
|
|
{
|
|
public function pdo(): PDO;
|
|
public function isConfigured(): bool;
|
|
} |