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