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\Generator; |
| 4 | |
| 5 | use App\Dto\Command\GenerateNickCommand; |
| 6 | use App\Dto\Result\GeneratedNickData; |
| 7 | use App\Exception\NickNotFoundException; |
| 8 | use App\Exception\NoQualifierFoundException; |
| 9 | use App\Exception\NoSubjectFoundException; |
| 10 | |
| 11 | /** |
| 12 | * @author Wilhelm Zwertvaegher |
| 13 | */ |
| 14 | interface NickGeneratorServiceInterface |
| 15 | { |
| 16 | /** |
| 17 | * @throws NickNotFoundException |
| 18 | * @throws NoQualifierFoundException |
| 19 | * @throws NoSubjectFoundException |
| 20 | */ |
| 21 | public function generateNick(GenerateNickCommand $command): GeneratedNickData; |
| 22 | } |