ContainerInterface.php 278 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Yansongda\Artful\Contract;
  4. interface ContainerInterface extends \Psr\Container\ContainerInterface
  5. {
  6. public function make(string $name, array $parameters = []): mixed;
  7. public function set(string $name, mixed $entry): mixed;
  8. }