Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| ExampleDto | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\Fixtures\Dto; |
| 3 | |
| 4 | use Apie\Core\Dto\DtoInterface; |
| 5 | use Apie\Fixtures\Enums\Gender; |
| 6 | |
| 7 | class ExampleDto implements DtoInterface |
| 8 | { |
| 9 | public string $string; |
| 10 | |
| 11 | public int $integer; |
| 12 | |
| 13 | public float $floatingPoint; |
| 14 | |
| 15 | public bool $trueOrFalse; |
| 16 | |
| 17 | public mixed $mixed; |
| 18 | |
| 19 | public $noType; |
| 20 | |
| 21 | public Gender $gender; |
| 22 | } |