HelperManager
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 2
c 1
b 0
f 0
dl 0
loc 6
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