Files
kiri-container/Interface/InjectPropertyInterface.php
T
2023-04-16 01:45:33 +08:00

13 lines
169 B
PHP

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