aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/DataFieldSelectboxEntry.php
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2026-01-13 08:39:22 +0100
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2026-01-13 08:39:22 +0100
commitcb4bdf265fe84443f6000e4af6e132f5aa566e3f (patch)
tree659d81c24abb6888ddb16220bf570993c6469a66 /lib/classes/DataFieldSelectboxEntry.php
parent246fe2c51046331af9c7509c201c937b2e433108 (diff)
use rector to resolve implicitely nullable parameter declarations, fixes #5463
Closes #5463 Merge request studip/studip!4097
Diffstat (limited to 'lib/classes/DataFieldSelectboxEntry.php')
-rw-r--r--lib/classes/DataFieldSelectboxEntry.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/DataFieldSelectboxEntry.php b/lib/classes/DataFieldSelectboxEntry.php
index bb2d321..585e21c 100644
--- a/lib/classes/DataFieldSelectboxEntry.php
+++ b/lib/classes/DataFieldSelectboxEntry.php
@@ -21,7 +21,7 @@ class DataFieldSelectboxEntry extends DataFieldEntry
* @param String $rangeID Range id
* @param mixed $value Value
*/
- public function __construct(DataField $struct = null, $range_id = '', $value = null)
+ public function __construct(?DataField $struct = null, $range_id = '', $value = null)
{
parent::__construct($struct, $range_id, $value);