%PDF- %PDF-
Direktori : /data/www_bck/varak.net_bck/losik.varak.net/vendor/nette/database/src/Database/ |
Current File : //data/www_bck/varak.net_bck/losik.varak.net/vendor/nette/database/src/Database/Conventions.php |
<?php /** * This file is part of the Nette Framework (https://nette.org) * Copyright (c) 2004 David Grudl (https://davidgrudl.com) */ declare(strict_types=1); namespace Nette\Database; use Nette\Database\Conventions\AmbiguousReferenceKeyException; interface Conventions { /** * Returns primary key for table. * @return string|string[]|null */ function getPrimary(string $table); /** * Returns referenced table & referenced column. * Example: * (author, book) returns [book, author_id] * * @return array|null [referenced table, referenced column] * @throws AmbiguousReferenceKeyException */ function getHasManyReference(string $table, string $key): ?array; /** * Returns referenced table & referencing column. * Example * (book, author) returns [author, author_id] * (book, translator) returns [author, translator_id] * * @return array|null [referenced table, referencing column] */ function getBelongsToReference(string $table, string $key): ?array; } interface_exists(IConventions::class);