Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
DtoWithPromotedProperties | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
__construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace Apie\Fixtures\Dto; |
4 | |
5 | use Apie\Core\Dto\DtoInterface; |
6 | |
7 | class DtoWithPromotedProperties implements DtoInterface |
8 | { |
9 | public function __construct( |
10 | public ?string $name = null, |
11 | public ?string $value = null |
12 | ) { |
13 | } |
14 | } |