2023-04-19 12:35:39 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Kiri\Di\Interface;
|
|
|
|
|
|
|
|
|
|
interface InjectProxyInterface
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
2023-12-18 22:23:16 +08:00
|
|
|
/**
|
|
|
|
|
* @param string $fileName
|
|
|
|
|
* @param string $class
|
|
|
|
|
* @param string $method
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function dispatch(string $fileName, string $class, string $method): void;
|
2023-04-19 12:35:39 +08:00
|
|
|
|
|
|
|
|
}
|