Files
kiri-container/Interface/InjectProxyInterface.php
T

18 lines
263 B
PHP
Raw Normal View History

2023-04-19 12:35:39 +08:00
<?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;
}