no-framework-tutorial/implementation/16-caching/src/Factory/ContainerProvider.php
2025-07-08 22:52:56 +02:00

10 lines
198 B
PHP

<?php declare(strict_types=1);
namespace Lubian\NoFramework\Factory;
use Psr\Container\ContainerInterface;
interface ContainerProvider
{
public function getContainer(): ContainerInterface;
}