File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 99 - 7.1
1010 - 7.2
1111 - 7.3
12+ - 7.4
13+ - 8.0
14+ - 8.1
1215 - hhvm
1316
1417before_script :
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ public function update($attributes = [])
7373 * @param mixed $offset
7474 * @return bool
7575 */
76+ #[\ReturnTypeWillChange]
7677 public function offsetExists ($ offset )
7778 {
7879 return isset ($ this ->$ offset );
@@ -84,6 +85,7 @@ public function offsetExists($offset)
8485 * @param mixed $offset
8586 * @return mixed
8687 */
88+ #[\ReturnTypeWillChange]
8789 public function offsetGet ($ offset )
8890 {
8991 return $ this ->$ offset ;
@@ -95,6 +97,7 @@ public function offsetGet($offset)
9597 * @param mixed $offset
9698 * @return void
9799 */
100+ #[\ReturnTypeWillChange]
98101 public function offsetSet ($ offset , $ value )
99102 {
100103 $ this ->$ offset = $ value ;
@@ -106,6 +109,7 @@ public function offsetSet($offset, $value)
106109 * @param mixed $offset
107110 * @return void
108111 */
112+ #[\ReturnTypeWillChange]
109113 public function offsetUnset ($ offset )
110114 {
111115 //
You can’t perform that action at this time.
0 commit comments