Skip to content

Commit b664864

Browse files
authored
Oprava mazani programu (#759)
* oprava mazani programu
1 parent 836c9f4 commit b664864

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/ApiModule/Dto/Schedule/ProgramDetailDto.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ class ProgramDetailDto
2020
private int $id;
2121

2222
/** @JMS\Type("string") */
23-
private string $start;
23+
private ?string $start = null;
2424

2525
/** @JMS\Type("string") */
26-
private string $end;
26+
private ?string $end = null;
2727

2828
/** @JMS\Type("int") */
29-
private int $blockId;
29+
private ?int $blockId = null;
3030

3131
/** @JMS\Type("int") */
3232
private ?int $roomId = null;

0 commit comments

Comments
 (0)