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\Properties\MaintainWordProperties; |
| 6 | use App\Entity\Word; |
| 7 | |
| 8 | /** |
| 9 | * @author Wilhelm Zwertvaegher |
| 10 | */ |
| 11 | interface WordServiceInterface |
| 12 | { |
| 13 | public function createOrUpdate(MaintainWordProperties $spec): Word; |
| 14 | |
| 15 | public function getByLabel(string $label): ?Word; |
| 16 | |
| 17 | public function save(Word $word): void; |
| 18 | } |