File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,17 +62,17 @@ public function __toString()
6262 return $ this ->string ;
6363 }
6464
65- public function offsetExists (mixed $ offset ): bool
65+ public function offsetExists ($ offset )
6666 {
6767 return isset ($ this ->metadata [$ offset ]);
6868 }
6969
70- public function offsetGet (mixed $ offset ): mixed
70+ public function offsetGet ($ offset )
7171 {
7272 return $ this ->metadata [$ offset ];
7373 }
7474
75- public function offsetSet (mixed $ offset , mixed $ value ): void
75+ public function offsetSet ($ offset , $ value )
7676 {
7777 if (null === $ offset ) {
7878 if (isset ($ value [0 ])) {
@@ -96,7 +96,7 @@ public function offsetSet(mixed $offset, mixed $value): void
9696 }
9797 }
9898
99- public function offsetUnset (mixed $ offset ): void
99+ public function offsetUnset ($ offset )
100100 {
101101 unset($ this ->metadata [$ offset ]);
102102 }
You can’t perform that action at this time.
0 commit comments