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\Nick; |
| 4 | |
| 5 | use App\Dto\Result\ComposedNick; |
| 6 | use App\Entity\Qualifier; |
| 7 | use App\Entity\Subject; |
| 8 | use App\Enum\Lang; |
| 9 | use App\Enum\WordGender; |
| 10 | |
| 11 | /** |
| 12 | * @author Wilhelm Zwertvaegher |
| 13 | * |
| 14 | * Composes a nick based on its subject, qualifier, lang and target gender |
| 15 | */ |
| 16 | interface NickComposerInterface |
| 17 | { |
| 18 | public function compose(Subject $subject, Qualifier $qualifier, Lang $lang, WordGender $targetGender): ComposedNick; |
| 19 | } |