Skip to content

Commit 8657e60

Browse files
committed
Merge remote-tracking branch 'ctam-kaltura/UCSFCLE_405_STABLE' into UCSFCLE_405-Merge_Kaltura_plugin_repo
2 parents c6e95bc + 463d71d commit 8657e60

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

local/kaltura/API/KalturaClientBase.php

+4
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,24 @@ function __get($name)
4848
return new MultiRequestSubResult($this->value . ':' . $name);
4949
}
5050

51+
#[\ReturnTypeWillChange]
5152
public function offsetExists($offset)
5253
{
5354
return true;
5455
}
5556

57+
#[\ReturnTypeWillChange]
5658
public function offsetGet($offset)
5759
{
5860
return new MultiRequestSubResult($this->value . ':' . $offset);
5961
}
6062

63+
#[\ReturnTypeWillChange]
6164
public function offsetSet($offset, $value)
6265
{
6366
}
6467

68+
#[\ReturnTypeWillChange]
6569
public function offsetUnset($offset)
6670
{
6771
}

0 commit comments

Comments
 (0)