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 Kiri\Di\LocalService;
|
2022-01-09 03:50:38 +08:00
|
|
|
|
|
|
|
|
interface Provider
|
|
|
|
|
{
|
|
|
|
|
|
2022-06-22 16:29:42 +08:00
|
|
|
public function onImport(LocalService $application);
|
2022-01-09 03:50:38 +08:00
|
|
|
|
|
|
|
|
}
|