60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2020 https://rewiv.com sikofitt@gmail.com
|
||
|
*
|
||
|
* This file is a part of Olive BBS
|
||
|
*
|
||
|
* This Source Code Form is subject to the
|
||
|
* terms of the Mozilla Public License, v. 2.0.
|
||
|
*
|
||
|
* If a copy of the MPL was not distributed with this file,
|
||
|
* You can obtain one at https://mozilla.org/MPL/2.0/.
|
||
|
*
|
||
|
* ___ ___ ___
|
||
|
* ( ).-. ( ) ( )
|
||
|
* .--. | |( __)___ ___ .--. | |.-. | |.-. .--.
|
||
|
* / \| |(''"( )( / \| / \| / \ / _ \
|
||
|
* | .-. | | | | | | | | .-. | .-. | .-. |. .' `. ;
|
||
|
* | | | | | | | | | | | | | | | | | | | || ' | |
|
||
|
* | | | | | | | | | | | |/ | | | | | | |_\_`.(___)
|
||
|
* | | | | | | | | | | | ' _.| | | | | | ( ). '.
|
||
|
* | ' | | | | | ' ' ; | .'.-| ' | | ' | || | `\ |
|
||
|
* ' `-' | | | | \ `' /' `-' ' `-' ;' `-' ; ; '._,' '
|
||
|
* `.__.(___(___) '_.' `.__.' `.__. `.__. '.___.'
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
namespace Olivebbs\Map;
|
||
|
|
||
|
use Olivebbs\Map\Exception\ImmutableMapException;
|
||
|
|
||
|
class ImmutableMap extends GenericMap
|
||
|
{
|
||
|
private function __construct(
|
||
|
?string $keyType,
|
||
|
?string $valueType,
|
||
|
array $values
|
||
|
) {
|
||
|
parent::__construct($keyType, $valueType);
|
||
|
|
||
|
$this->assertInitialValues($values);
|
||
|
$this->map->putAll($values);
|
||
|
}
|
||
|
|
||
|
public function offsetSet($offset, $value): void
|
||
|
{
|
||
|
throw new ImmutableMapException(sprintf('Cannot change values in %s', __CLASS__));
|
||
|
}
|
||
|
|
||
|
public function offsetUnset($offset): void
|
||
|
{
|
||
|
throw new ImmutableMapException(sprintf('Cannot unset values in %s', __CLASS__));
|
||
|
}
|
||
|
|
||
|
public static function create(string $keyType, string $valueType, array $values): ImmutableMap
|
||
|
{
|
||
|
return new self($keyType, $valueType, $values);
|
||
|
}
|
||
|
}
|