Conventions
interface Conventions
Methods
string|array|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.
Details
at line 20
string|array|null
getPrimary(string $table)
Returns primary key for table.
at line 30
array|null
getHasManyReference(string $table, string $key)
Returns referenced table & referenced column.
Example: (author, book) returns [book, author_id]
at line 40
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]