mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
27 lines
664 B
PHP
27 lines
664 B
PHP
<?php
|
|
|
|
namespace Chill\PersonBundle\AccompanyingPeriod\Suggestion;
|
|
|
|
use Chill\MainBundle\Entity\User;
|
|
use Chill\PersonBundle\Entity\AccompanyingPeriod;
|
|
|
|
/**
|
|
* Basic implementation: this suggestion does not return any suggestion
|
|
*/
|
|
final class ReferralsSuggestion implements ReferralsSuggestionInterface
|
|
{
|
|
public function countReferralSuggested(AccompanyingPeriod $period, ?array $options = []): int
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @param AccompanyingPeriod $period
|
|
* @return array|User[]
|
|
*/
|
|
public function findReferralSuggested(AccompanyingPeriod $period, int $limit = 50, int $start = 0): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|