Issues (82)

src/Console/Module/HelperManager.php (1 issue)

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Arp\LaminasDoctrine\Console\Module;
6
7
use Laminas\ServiceManager\AbstractPluginManager;
8
use Symfony\Component\Console\Helper\HelperInterface;
9
10
/**
11
 * @extends AbstractPluginManager<HelperInterface>
12
 */
13
final class HelperManager extends AbstractPluginManager
14
{
15
    /**
16
     * @var class-string<HelperInterface>
0 ignored issues
show
Documentation Bug introduced by
The doc comment class-string<HelperInterface> at position 0 could not be parsed: Unknown type name 'class-string' at position 0 in class-string<HelperInterface>.
Loading history...
17
     */
18
    protected $instanceOf = HelperInterface::class;
19
}
20