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