Files
kiri-core/kiri-engine/Abstracts/Providers.php
T
2023-04-16 02:01:27 +08:00

29 lines
489 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Abstracts;
use Exception;
use Psr\Container\ContainerInterface;
/**
* Class Providers
* @package Kiri\Abstracts
*/
abstract class Providers extends Component implements Provider
{
/**
* @param ContainerInterface $container
* @param array $config
* @throws Exception
*/
public function __construct(public ContainerInterface $container, array $config = [])
{
parent::__construct($config);
}
}