Files
kiri-container/Interface/InjectPropertyInterface.php
T
2023-04-15 23:32:00 +08:00

12 lines
144 B
PHP

<?php
namespace Kiri\Di\Interface;
interface InjectPropertyInterface
{
public function dispatch(object $class, string $property): void;
}