Files
kiri-container/Interface/InjectPropertyInterface.php
2023-10-24 17:22:28 +08:00

18 lines
264 B
PHP

<?php
declare(strict_types=1);
namespace Kiri\Di\Interface;
interface InjectPropertyInterface
{
/**
* @param object $class
* @param string $property
* @return void
*/
public function dispatch(object $class, string $property): void;
}