This commit is contained in:
2023-04-19 12:35:39 +08:00
parent c58b3080ad
commit ea844c3317
2 changed files with 31 additions and 4 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Kiri\Di\Interface;
interface InjectProxyInterface
{
/**
* @param string $fileName
* @param object $class
* @param string $method
* @return void
*/
public function dispatch(string $fileName, object $class, string $method): void;
}