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

18 lines
281 B
PHP

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