1 | <?php |
||
2 | |||
3 | /* |
||
4 | * This file is part of the Micro framework package. |
||
5 | * |
||
6 | * (c) Stanislau Komar <[email protected]> |
||
7 | * |
||
8 | * For the full copyright and license information, please view the LICENSE |
||
9 | * file that was distributed with this source code. |
||
10 | */ |
||
11 | |||
12 | namespace Micro\Component\DependencyInjection\Autowire; |
||
13 | |||
14 | interface AutowireHelperInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param class-string|array<class-string|string>|array<object|string>|callable $target |
||
0 ignored issues
–
show
Documentation
Bug
introduced
by
![]() |
|||
18 | */ |
||
19 | public function autowire(string|array|callable $target): callable; |
||
20 | } |
||
21 |