Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| UpdateCategoryCommand | |
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 | declare(strict_types=1); |
| 4 | |
| 5 | namespace App\Expense\Application\Command; |
| 6 | |
| 7 | final readonly class UpdateCategoryCommand |
| 8 | { |
| 9 | public function __construct( |
| 10 | public string $category, |
| 11 | public ?string $label, |
| 12 | public ?string $icon, |
| 13 | public ?string $color, |
| 14 | public bool $active, |
| 15 | ) { |
| 16 | } |
| 17 | } |