`DbRepository`: Use correct name case for `RepositoryQuery` in `joinColumn()` method

This commit is contained in:
raviks789 2023-08-15 09:28:15 +02:00
parent 201706614d
commit 677a32545b
1 changed files with 1 additions and 1 deletions

View File

@ -988,7 +988,7 @@ abstract class DbRepository extends Repository implements Extensible, Updatable,
*
* @param string $name The alias or column name to join into $target
* @param string $target The table to join $name into
* @param RepositoryQUery $query The query to apply the JOIN-clause on
* @param RepositoryQuery $query The query to apply the JOIN-clause on
*
* @return string|null The resolved alias or $name, null if no join logic is found
*/