Files
kiri-container/Interface/InjectPropertyInterface.php
T

13 lines
169 B
PHP
Raw 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
{
public function dispatch(object $class, string $property): void;
}