Files
kiri-container/Interface/InjectParameterInterface.php
T
2023-04-16 12:49:55 +08:00

18 lines
248 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Di\Interface;
interface InjectParameterInterface
{
/**
* @param string $class
* @param string $method
* @return mixed
*/
public function dispatch(string $class, string $method): mixed;
}