diff options
| author | Rami Jasim <minecraftmrgold@gmail.com> | 2025-03-12 14:30:36 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-03-12 14:30:36 +0000 |
| commit | f541b76dbdc72bc2685ad2c87ee1b0b034ff7778 (patch) | |
| tree | dc2c5610db8ade6d22a5899eb2a7366ea6b0c4bb /lib/classes/StudipArrayObject.php | |
| parent | 1bf0695ec507e2bdc474bbbd045ae21a39a60c08 (diff) | |
Fix #5257: Type Hinting for Simple(ORMap)Collection
Closes #5257
Merge request studip/studip!3943
Diffstat (limited to 'lib/classes/StudipArrayObject.php')
| -rw-r--r-- | lib/classes/StudipArrayObject.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/classes/StudipArrayObject.php b/lib/classes/StudipArrayObject.php index a93d9d3..0215538 100644 --- a/lib/classes/StudipArrayObject.php +++ b/lib/classes/StudipArrayObject.php @@ -13,6 +13,11 @@ * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License + * + * @template TKey + * @template TValue + * @implements IteratorAggregate<TKey, TValue> + * @implements ArrayAccess<TKey, TValue> */ class StudipArrayObject implements IteratorAggregate, ArrayAccess, Countable { |
