diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-01-13 08:39:22 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2026-01-13 08:39:22 +0100 |
| commit | cb4bdf265fe84443f6000e4af6e132f5aa566e3f (patch) | |
| tree | 659d81c24abb6888ddb16220bf570993c6469a66 /lib/classes/SQLUnionQuery.php | |
| parent | 246fe2c51046331af9c7509c201c937b2e433108 (diff) | |
use rector to resolve implicitely nullable parameter declarations, fixes #5463
Closes #5463
Merge request studip/studip!4097
Diffstat (limited to 'lib/classes/SQLUnionQuery.php')
| -rw-r--r-- | lib/classes/SQLUnionQuery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classes/SQLUnionQuery.php b/lib/classes/SQLUnionQuery.php index 6254b78..8587a42 100644 --- a/lib/classes/SQLUnionQuery.php +++ b/lib/classes/SQLUnionQuery.php @@ -66,7 +66,7 @@ class SQLUnionQuery /** * Fetches all rows from the combined query */ - public function fetchAll(callable $callable = null): array + public function fetchAll(?callable $callable = null): array { return DBManager::get()->fetchAll( $this->getQuery(), |
