Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| DropdownOption | |
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 | namespace Apie\CmsApiDropdownOption\Dtos; |
| 3 | |
| 4 | use Apie\Core\Dto\DtoInterface; |
| 5 | |
| 6 | final class DropdownOption implements DtoInterface |
| 7 | { |
| 8 | public function __construct( |
| 9 | public string $value, |
| 10 | public string $displayValue |
| 11 | ) { |
| 12 | } |
| 13 | } |