Files
kiri-container/Interface/InjectPropertyInterface.php
T

12 lines
144 B
PHP
Raw Normal View History

2023-04-15 23:32:00 +08:00
<?php
namespace Kiri\Di\Interface;
interface InjectPropertyInterface
{
public function dispatch(object $class, string $property): void;
}