Column
extends Component
in package
implements
IColumn
AbstractYes
Tags
Table of Contents
Interfaces
Properties
- $db : string
- The name of the database this column is from
- $default_value : string|int|float
- The default value for this column if there is any
- $name : string
- The name of the column
- $qualified_name : string
- $table : ITable
- The name of the table this column belongs to
- $type : int
- The type of this column
- $hashCode : int
- $hashCounter : int
Methods
- __call() : mixed
- __callStatic() : mixed
- __construct() : mixed
- __destruct() : mixed
- __get() : mixed
- extends() : bool
- getDefaultValue() : mixed
- getName() : string
- getQualifiedName() : string
- Gets the fully qualified name for this column
- getReflection() : ReflectionClass
- getTable() : ITable
- getType() : int
- init() : mixed
- setTable() : mixed
Properties
$db
The name of the database this column is from
protected
string
$db
$default_value
The default value for this column if there is any
protected
string|int|float
$default_value
$name
The name of the column
protected
string
$name
$qualified_name
protected
string
$qualified_name
$table
The name of the table this column belongs to
protected
ITable
$table
$type
The type of this column
protected
int
$type
$hashCode
private
int
$hashCode
$hashCounter
private
static int
$hashCounter
= 0
Methods
__call()
public
__call(string $method, array<string|int, mixed> $arguments) : mixed
Parameters
- $method : string
- $arguments : array<string|int, mixed>
Tags
__callStatic()
public
static __callStatic(mixed $method, array<string|int, mixed> $arguments) : mixed
Parameters
- $method : mixed
- $arguments : array<string|int, mixed>
__construct()
public
__construct(ITable $table, mixed $column) : mixed
Parameters
- $table : ITable
- $column : mixed
__destruct()
public
__destruct() : mixed
__get()
public
__get(string $property) : mixed
Parameters
- $property : string
extends()
public
extends(ReflectionClass $reflector) : bool
Parameters
- $reflector : ReflectionClass
Return values
boolgetDefaultValue()
public
getDefaultValue() : mixed
Tags
getName()
public
getName() : string
Tags
Return values
stringgetQualifiedName()
Gets the fully qualified name for this column
public
getQualifiedName() : string
Tags
Return values
stringgetReflection()
public
getReflection() : ReflectionClass
Return values
ReflectionClassgetTable()
public
getTable() : ITable
Tags
Return values
ITablegetType()
public
getType() : int
Tags
Return values
intinit()
protected
init() : mixed
setTable()
private
setTable(ITable $table) : mixed
Parameters
- $table : ITable