From 79dc69d7ef886d2b2d12cb10a06fe6544956d7d2 Mon Sep 17 00:00:00 2001 From: Christoph Reiter <reiter.christoph@gmail.com> Date: Tue, 3 Nov 2020 13:42:36 +0100 Subject: [PATCH] Make the linter happy again. --- src/MyCustomPersonProvider.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/MyCustomPersonProvider.php b/src/MyCustomPersonProvider.php index 95acb46..cf1b1ae 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 +} -- GitLab