Skip to content
Snippets Groups Projects
Commit 79dc69d7 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Make the linter happy again.

parent 3f5be9bc
No related branches found
No related tags found
No related merge requests found
Pipeline #13904 passed
<?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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment