Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | class PublicatieReference implements ConstructWithClientInterface |
||
15 | { |
||
16 | use LazyLoadingPropertyTrait; |
||
17 | |||
18 | /** |
||
19 | * @JMS\Type("string") |
||
20 | * @JMS\XmlValue() |
||
21 | * |
||
22 | * @var string $publicatieKenmerk |
||
23 | */ |
||
24 | public $publicatieKenmerk; |
||
25 | |||
26 | /** |
||
27 | * @JMS\ReadOnlyProperty() |
||
28 | * |
||
29 | * @var Insolvente $insolvente |
||
30 | */ |
||
31 | private $insolvente; |
||
32 | |||
33 | 5 | public function __construct(Client $client) |
|
42 |