Files
kiri-container/Interface/InjectMethodInterface.php
2023-12-18 22:23:16 +08:00

16 lines
235 B
PHP

<?php
namespace Kiri\Di\Interface;
interface InjectMethodInterface
{
/**
* @param string $class
* @param string $method
* @return void
*/
public function dispatch(string $class, string $method): void;
}