DiscoveredConventions
class DiscoveredConventions implements Conventions
Conventions based on database structure.
Properties
protected | $structure |
Methods
string|array|null
getPrimary(string $table)
Returns primary key for table.
array|null
getHasManyReference(string $nsTable, string $key)
Returns referenced table & referenced column.
array|null
getBelongsToReference(string $table, string $key)
Returns referenced table & referencing column.
Details
at line 24
__construct(IStructure $structure)
No description
at line 30
string|array|null
getPrimary(string $table)
Returns primary key for table.
at line 36
array|null
getHasManyReference(string $nsTable, string $key)
Returns referenced table & referenced column.
Example: (author, book) returns [book, author_id]
at line 85
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]