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
3namespace App\Service\Data;
4
5use App\Dto\Command\CreateContactCommand;
6use App\Entity\Contact;
7
8/**
9 * @author Wilhelm Zwertvaegher
10 */
11interface ContactServiceInterface
12{
13    public function save(Contact $contact): void;
14
15    public function create(CreateContactCommand $command): Contact;
16}