Files
kiri-core/kiri-engine/Abstracts/Providers.php
T

29 lines
483 B
PHP
Raw Normal View History

2022-01-09 03:50:38 +08:00
<?php
declare(strict_types=1);
namespace Kiri\Abstracts;
2022-06-22 16:29:42 +08:00
use Exception;
use Kiri\Di\ContainerInterface;
2022-01-09 03:50:38 +08:00
/**
* Class Providers
* @package Kiri\Abstracts
*/
abstract class Providers extends Component implements Provider
{
2022-06-22 16:29:42 +08:00
/**
* @param ContainerInterface $container
* @param array $config
* @throws Exception
*/
public function __construct(public ContainerInterface $container, array $config = [])
{
parent::__construct($config);
}
2022-01-09 03:50:38 +08:00
}