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-14 11:53:18 +0100 |
| commit | 13b96e1ea956abd3302ba3b384b9bfce2452239a (patch) | |
| tree | ae9f47ddd8bb9efe05570807f372e1e01de5dd47 /lib/classes/StudipArrayObject.class.php | |
| parent | 00acb0ce26390622705950573965d37848b834d5 (diff) | |
Fix #5257: Type Hinting for Simple(ORMap)Collection
Closes #5257
Merge request studip/studip!3943
Diffstat (limited to 'lib/classes/StudipArrayObject.class.php')
| -rw-r--r-- | lib/classes/StudipArrayObject.class.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/classes/StudipArrayObject.class.php b/lib/classes/StudipArrayObject.class.php index 47f116b..b0434ec 100644 --- a/lib/classes/StudipArrayObject.class.php +++ b/lib/classes/StudipArrayObject.class.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 { |
