This commit is contained in:
2023-12-18 22:23:16 +08:00
parent c6e9133566
commit ae8ba9ca4e
5 changed files with 43 additions and 18 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace Kiri\Di\Interface;
interface InjectMethodInterface
{
/**
* @param string $class
* @param string $method
* @return void
*/
public function dispatch(string $class, string $method): void;
}