From 8a39666f15ef6da39442cef7edc59def4f5737b2 Mon Sep 17 00:00:00 2001 From: Ilya Orlov Date: Fri, 25 Oct 2024 14:54:05 +0500 Subject: [PATCH] Add @implements to Connection\Iterator --- src/swoole/Swoole/Connection/Iterator.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/swoole/Swoole/Connection/Iterator.php b/src/swoole/Swoole/Connection/Iterator.php index a42b695..a7e30b9 100644 --- a/src/swoole/Swoole/Connection/Iterator.php +++ b/src/swoole/Swoole/Connection/Iterator.php @@ -6,6 +6,8 @@ /** * @not-serializable Objects of this class cannot be serialized. + * @implements \Iterator + * @implements \ArrayAccess */ class Iterator implements \Iterator, \ArrayAccess, \Countable {