2021-12-23 23:22:25 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace SparkPlug\Com\Noccy\Pdo\Reflection;
|
|
|
|
|
|
|
|
|
|
use SparkPlug\Com\Noccy\Pdo\PdoResource;
|
|
|
|
|
|
|
|
|
|
interface DatabaseReflectionInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public function getAllTables(): array;
|
|
|
|
|
|
|
|
|
|
public function getTable(string $name): ?TableReflectionInterface;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|