21 lines
348 B
PHP
21 lines
348 B
PHP
|
<?php
|
||
|
|
||
|
namespace SparkPlug\Com\Noccy\Pdo\Reflection;
|
||
|
|
||
|
use SparkPlug\Com\Noccy\Pdo\PdoResource;
|
||
|
|
||
|
interface ColumnReflectionInterface
|
||
|
{
|
||
|
|
||
|
public function isPrimaryKey(): bool;
|
||
|
|
||
|
public function isNullable(): bool;
|
||
|
|
||
|
public function getName(): string;
|
||
|
|
||
|
public function getType(): string;
|
||
|
|
||
|
public function getDefaultValue(): mixed;
|
||
|
}
|
||
|
|