13 lines
140 B
PHP
13 lines
140 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Kiri\Di\Interface;
|
|
|
|
interface InjectParameterInterface
|
|
{
|
|
|
|
|
|
public function dispatch(): mixed;
|
|
|
|
}
|