12 lines
115 B
PHP
12 lines
115 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Kiri\Di\Interface;
|
||
|
|
|
||
|
|
interface InjectParameterInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
|
||
|
|
public function dispatch(): mixed;
|
||
|
|
|
||
|
|
}
|