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