Issues (10)

src/AutowireHelperInterface.php (1 issue)

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
The doc comment class-string|array<class...object|string>|callable at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string|array<class-string|string>|array<object|string>|callable.
Loading history...
18
     */
19
    public function autowire(string|array|callable $target): callable;
20
}
21