mirror of
https://github.com/symfony/ux-map.git
synced 2026-03-23 23:42:07 +01:00
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\UX\Map\Tests;
|
|
|
|
use Symfony\UX\Map\MapOptionsInterface;
|
|
use Symfony\UX\Map\MapOptionsNormalizer;
|
|
|
|
final class DummyOptions implements MapOptionsInterface
|
|
{
|
|
public function __construct(
|
|
private readonly string $mapId,
|
|
private readonly string $mapType,
|
|
) {
|
|
}
|
|
|
|
public static function registerToNormalizer(): void
|
|
{
|
|
MapOptionsNormalizer::$providers['dummy'] = self::class;
|
|
}
|
|
|
|
public static function unregisterFromNormalizer(): void
|
|
{
|
|
unset(MapOptionsNormalizer::$providers['dummy']);
|
|
}
|
|
|
|
public static function fromArray(array $array): MapOptionsInterface
|
|
{
|
|
return new self(
|
|
$array['mapId'],
|
|
$array['mapType'],
|
|
);
|
|
}
|
|
|
|
public function toArray(): array
|
|
{
|
|
return [
|
|
'mapId' => $this->mapId,
|
|
'mapType' => $this->mapType,
|
|
];
|
|
}
|
|
}
|