diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2023-03-10 18:45:14 +0000 |
|---|---|---|
| committer | David Siegfried <david.siegfried@uni-vechta.de> | 2023-03-10 18:45:14 +0000 |
| commit | 01ebc410441ae59c684381c175217281c2d78edd (patch) | |
| tree | 75ae7153be87bfc53861abe13cee4ad9f2eab703 /lib/classes/StudipPDOStatement.php | |
| parent | fef7d9367736f3b33b0318da237ab024841c4f3f (diff) | |
return type adjustments, fixes #2290
Closes #2290
Merge request studip/studip!1514
Diffstat (limited to 'lib/classes/StudipPDOStatement.php')
| -rw-r--r-- | lib/classes/StudipPDOStatement.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/classes/StudipPDOStatement.php b/lib/classes/StudipPDOStatement.php index 5aab1cc..4a3d069 100644 --- a/lib/classes/StudipPDOStatement.php +++ b/lib/classes/StudipPDOStatement.php @@ -99,7 +99,10 @@ class StudipPDOStatement implements IteratorAggregate /** * Forwards all Iterator methods to the actual statement object. + * + * @todo Add Traversable return type when Stud.IP requires PHP8 minimal */ + #[ReturnTypeWillChange] public function getIterator() { return $this->stmt; |
