. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Contracts; use Psr\Container\ContainerInterface as Psr11ContainerInterface; /** * Extend the PSR-11 container interface with a method to add items. */ interface ContainerInterface extends Psr11ContainerInterface { public function set(string $id, object $object): static; }