We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836c9f4 commit b664864Copy full SHA for b664864
app/ApiModule/Dto/Schedule/ProgramDetailDto.php
@@ -20,13 +20,13 @@ class ProgramDetailDto
20
private int $id;
21
22
/** @JMS\Type("string") */
23
- private string $start;
+ private ?string $start = null;
24
25
26
- private string $end;
+ private ?string $end = null;
27
28
/** @JMS\Type("int") */
29
- private int $blockId;
+ private ?int $blockId = null;
30
31
32
private ?int $roomId = null;
0 commit comments