|
|
|
@ -128,13 +128,13 @@ class ImmutableCollection implements IImmutableCollection {
|
|
|
|
|
/**
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
*/
|
|
|
|
|
public function offsetSet ($offset, $value) {
|
|
|
|
|
public function offsetSet ($offset, $value): void {
|
|
|
|
|
throw new ImmutableException();
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* @inheritDoc
|
|
|
|
|
*/
|
|
|
|
|
public function offsetUnset ($offset) {
|
|
|
|
|
public function offsetUnset ($offset): void {
|
|
|
|
|
throw new ImmutableException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|