for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use function array_intersect_key;
use function array_merge;
readonly class Icon
{
/** @param array<string, mixed> $params */
public function __construct(
public string $image,
public string $title,
public string $route,
public array $params = [],
) {
}
public function withDifferentParams(array $params): self
$params = array_merge($this->params, array_intersect_key($params, $this->params));
return new self($this->image, $this->title, $this->route, $params);