diff --git a/src/MyCustomPersonProvider.php b/src/MyCustomPersonProvider.php index 95acb46da7c467bb09ceefaa4d15449234bbc45a..cf1b1ae5cc62c629bfdbc61722f7a2ebbd977480 100644 --- a/src/MyCustomPersonProvider.php +++ b/src/MyCustomPersonProvider.php @@ -1,5 +1,6 @@ <?php +declare(strict_types=1); namespace App; @@ -8,29 +9,33 @@ use DBP\API\CoreBundle\Service\PersonProviderInterface; class MyCustomPersonProvider implements PersonProviderInterface { - public function getPersons(array $filters): array { // TODO: Implement getPersons() method. + return []; } public function getPersonsByNameAndBirthday(string $givenName, string $familyName, \DateTime $birthDay): array { // TODO: Implement getPersonsByNameAndBirthday() method. + return []; } public function getPerson(string $id, bool $full): Person { // TODO: Implement getPerson() method. + return new Person(); } public function getCurrentPerson(): Person { // TODO: Implement getCurrentPerson() method. + return new Person(); } public function getPersonForExternalService(string $service, string $serviceID): Person { // TODO: Implement getPersonForExternalService() method. + return new Person(); } -} \ No newline at end of file +}