eee
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
@@ -6,12 +6,12 @@ interface InjectProxyInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @param string $fileName
|
||||
* @param object $class
|
||||
* @param string $method
|
||||
* @return void
|
||||
*/
|
||||
public function dispatch(string $fileName, object $class, string $method): void;
|
||||
/**
|
||||
* @param string $fileName
|
||||
* @param string $class
|
||||
* @param string $method
|
||||
* @return void
|
||||
*/
|
||||
public function dispatch(string $fileName, string $class, string $method): void;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Kiri\Di\Interface;
|
||||
|
||||
interface InjectTargetInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @param string $class
|
||||
* @return void
|
||||
*/
|
||||
public function dispatch(string $class): void;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user