Files

18 lines
248 B
PHP
Raw Permalink Normal View History

2023-04-15 23:32:00 +08:00
<?php
2023-04-16 01:45:33 +08:00
declare(strict_types=1);
2023-04-15 23:32:00 +08:00
namespace Kiri\Di\Interface;
interface InjectParameterInterface
{
2023-04-16 12:23:16 +08:00
/**
2023-04-16 12:49:55 +08:00
* @param string $class
2023-04-16 12:23:16 +08:00
* @param string $method
* @return mixed
*/
2023-04-16 12:49:55 +08:00
public function dispatch(string $class, string $method): mixed;
2023-04-15 23:32:00 +08:00
}