File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ public function count(): int {
4646 /**
4747 * @inheritDoc
4848 */
49+ #[\ReturnTypeWillChange]
4950 public function current () {
5051 return current ( $ this ->fields );
5152 }
@@ -101,20 +102,23 @@ public function offsetExists( $offset ): bool {
101102 /**
102103 * @inheritDoc
103104 */
105+ #[\ReturnTypeWillChange]
104106 public function offsetGet ( $ offset ) {
105107 return $ this ->fields [ $ offset ];
106108 }
107109
108110 /**
109111 * @inheritDoc
110112 */
113+ #[\ReturnTypeWillChange]
111114 public function offsetSet ( $ offset , $ value ): void {
112115 $ this ->fields [ $ offset ] = $ value ;
113116 }
114117
115118 /**
116119 * @inheritDoc
117120 */
121+ #[\ReturnTypeWillChange]
118122 public function offsetUnset ( $ offset ): void {
119123 unset( $ this ->fields [ $ offset ] );
120124 }
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ public function count(): int {
4646 /**
4747 * @inheritDoc
4848 */
49+ #[\ReturnTypeWillChange]
4950 public function current () {
5051 return current ( $ this ->tables );
5152 }
@@ -114,6 +115,7 @@ public function offsetExists( $offset ): bool {
114115 /**
115116 * @inheritDoc
116117 */
118+ #[\ReturnTypeWillChange]
117119 public function offsetGet ( $ offset ) {
118120 return $ this ->tables [ $ offset ];
119121 }
You can’t perform that action at this time.
0 commit comments