Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Service\Data; |
| 4 | |
| 5 | use App\Dto\Result\GeneratedApiKey; |
| 6 | use App\Entity\ApiKey; |
| 7 | |
| 8 | interface ApiKeyServiceInterface |
| 9 | { |
| 10 | public function findKey(int $id): ?ApiKey; |
| 11 | |
| 12 | public function createKey(): GeneratedApiKey; |
| 13 | |
| 14 | public function findValidKey(string $receivedKey): ?ApiKey; |
| 15 | } |