create ContainerInterface

This commit is contained in:
2026-05-31 17:56:36 -04:00
parent 1e60fc5d10
commit 46ba495fe6
@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Potter\Container;
use \Psr\Container\ContainerInterface as BaseContainerInterface;
interface ContainerInterface extends BaseContainerInterface
{
public function get(string $key): mixed;
public function has(string $key): bool;
}