16 lines
256 B
PHP
16 lines
256 B
PHP
|
<?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;
|
||
|
|
||
|
}
|
||
|
|