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