|
55 | 55 | * @method void setLockedUntil(int|null $value) |
56 | 56 | */ |
57 | 57 | class Form extends Entity { |
58 | | - protected $hash; |
59 | | - protected $title; |
60 | | - protected $description; |
61 | | - protected $ownerId; |
62 | | - protected $fileId; |
63 | | - protected $fileFormat; |
64 | | - protected $accessEnum; |
65 | | - protected $created; |
66 | | - protected $expires; |
67 | | - protected $isAnonymous; |
68 | | - protected $submitMultiple; |
69 | | - protected $allowEditSubmissions; |
70 | | - protected $showExpiration; |
71 | | - protected $submissionMessage; |
72 | | - protected $lastUpdated; |
73 | | - protected $state; |
74 | | - protected $lockedBy; |
75 | | - protected $lockedUntil; |
76 | | - protected $maxSubmissions; |
| 58 | + protected string $hash; |
| 59 | + protected string $title; |
| 60 | + protected string $description; |
| 61 | + protected string $ownerId; |
| 62 | + protected ?int $fileId; |
| 63 | + protected ?string $fileFormat; |
| 64 | + protected int $accessEnum; |
| 65 | + protected int $created; |
| 66 | + protected int $expires; |
| 67 | + protected bool $isAnonymous; |
| 68 | + protected bool $submitMultiple; |
| 69 | + protected bool $allowEditSubmissions; |
| 70 | + protected bool $showExpiration; |
| 71 | + protected ?string $submissionMessage; |
| 72 | + protected int $lastUpdated; |
| 73 | + protected ?int $state; |
| 74 | + protected ?string $lockedBy; |
| 75 | + protected ?int $lockedUntil; |
| 76 | + protected ?int $maxSubmissions; |
77 | 77 |
|
78 | 78 | /** |
79 | 79 | * Form constructor. |
|
0 commit comments