Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class Client extends AbstractClient |
||
22 | { |
||
23 | /** |
||
24 | * @var ClientId |
||
25 | */ |
||
26 | protected $clientId; |
||
27 | |||
28 | public function __construct(ClientId $clientId, DataBag $parameters, ?UserAccountId $ownerId) |
||
29 | { |
||
30 | $this->clientId = $clientId; |
||
31 | parent::__construct($parameters, $ownerId); |
||
32 | } |
||
33 | |||
34 | public function getClientId(): ClientId |
||
37 | } |
||
38 | } |
||
39 |