Files
kiri-container/Interface/InjectPropertyInterface.php
T

18 lines
264 B
PHP
Raw Permalink Normal View History

2023-04-15 23:32:00 +08:00
<?php
2023-04-16 01:45:33 +08:00
declare(strict_types=1);
2023-04-15 23:32:00 +08:00
namespace Kiri\Di\Interface;
interface InjectPropertyInterface
{
2023-10-24 17:22:28 +08:00
/**
* @param object $class
* @param string $property
* @return void
*/
2023-04-15 23:32:00 +08:00
public function dispatch(object $class, string $property): void;
}