mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-08 06:19:42 +00:00
Clarify documentation in PersonIdentifierManagerInterface
and fix formatting in SQL query
- Updated PHPDoc in `getWorkers` method to explicitly state that only active definitions are returned. - Standardized number formatting in SQL query for better readability and consistency.
This commit is contained in:
@@ -18,6 +18,8 @@ interface PersonIdentifierManagerInterface
|
|||||||
/**
|
/**
|
||||||
* Build PersonIdentifierWorker's for all active definition.
|
* Build PersonIdentifierWorker's for all active definition.
|
||||||
*
|
*
|
||||||
|
* Only active definition are returned.
|
||||||
|
*
|
||||||
* @return list<PersonIdentifierWorker>
|
* @return list<PersonIdentifierWorker>
|
||||||
*/
|
*/
|
||||||
public function getWorkers(): array;
|
public function getWorkers(): array;
|
||||||
|
@@ -153,7 +153,7 @@ final readonly class PersonACLAwareRepository implements PersonACLAwareRepositor
|
|||||||
WHERE identifier.canonical LIKE LOWER(UNACCENT(?)) || '%' AND identifier.definition_id IN ({$idDefinitionWorkerQuestionMarks})
|
WHERE identifier.canonical LIKE LOWER(UNACCENT(?)) || '%' AND identifier.definition_id IN ({$idDefinitionWorkerQuestionMarks})
|
||||||
AND person.id = identifier.person_id
|
AND person.id = identifier.person_id
|
||||||
)";
|
)";
|
||||||
$pertinence[] = "({$mq})::int * 1_000_000";
|
$pertinence[] = "({$mq})::int * 1000000";
|
||||||
$qArguments = [...$qArguments, $str, ...$idDefinitionWorkers];
|
$qArguments = [...$qArguments, $str, ...$idDefinitionWorkers];
|
||||||
$pertinenceArgs = [...$pertinenceArgs, $str, ...$idDefinitionWorkers];
|
$pertinenceArgs = [...$pertinenceArgs, $str, ...$idDefinitionWorkers];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user