15 lines
190 B
PHP
15 lines
190 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Kiri\Di\Interface;
|
||
|
|
|
||
|
|
interface InjectTargetInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param string $class
|
||
|
|
* @return void
|
||
|
|
*/
|
||
|
|
public function dispatch(string $class): void;
|
||
|
|
|
||
|
|
}
|