| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 13 | class Client implements |
||
| 14 | ClientInterface, |
||
| 15 | NameFieldInterface |
||
| 16 | { |
||
| 17 | |||
| 18 | use DSM\Traits\UsesPHPMetaDataTrait; |
||
| 19 | use DSM\Traits\ValidatedEntityTrait; |
||
| 20 | use DSM\Fields\Traits\PrimaryKey\IdFieldTrait; |
||
| 21 | use NameFieldTrait; |
||
| 22 | |||
| 23 | public function __construct(EntityValidatorInterface $validator) { |
||
| 28 |