class StaticConventions implements Conventions

Conventions based on static definition.

Properties

protected string $primary
protected string $foreign
protected string $table

Methods

__construct(string $primary = 'id', string $foreign = '%s_id', string $table = '%s')

Create static conventional structure.

string|string[]|null
getPrimary(string $table)

Returns primary key for table.

array|null
getHasManyReference(string $table, string $key)

Returns referenced table & referenced column.

array|null
getBelongsToReference(string $table, string $key)

Returns referenced table & referencing column.

string
getColumnFromTable(string $name)

No description

Details

at line 39
__construct(string $primary = 'id', string $foreign = '%s_id', string $table = '%s')

Create static conventional structure.

Parameters

string $primary

%s stands for table name

string $foreign

%1$s stands for key used after ->, %2$s for table name

string $table

%1$s stands for key used after ->, %2$s for table name

at line 47
string|string[]|null getPrimary(string $table)

Returns primary key for table.

Parameters

string $table

Return Value

string|string[]|null

at line 53
array|null getHasManyReference(string $table, string $key)

Returns referenced table & referenced column.

Example: (author, book) returns [book, author_id]

Parameters

string $table
string $key

Return Value

array|null

[referenced table, referenced column]

Exceptions

AmbiguousReferenceKeyException

at line 63
array|null getBelongsToReference(string $table, string $key)

Returns referenced table & referencing column.

Example (book, author) returns [author, author_id] (book, translator) returns [author, translator_id]

Parameters

string $table
string $key

Return Value

array|null

[referenced table, referencing column]

at line 73
protected string getColumnFromTable(string $name)

No description

Parameters

string $name

Return Value

string

Traits

Strict class for better experience.