for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arp\LaminasDoctrine\Console\Module;
use Laminas\ServiceManager\AbstractPluginManager;
use Symfony\Component\Console\Helper\HelperInterface;
/**
* @extends AbstractPluginManager<HelperInterface>
*/
final class HelperManager extends AbstractPluginManager
{
* @var class-string<HelperInterface>
class-string<HelperInterface>
0
protected $instanceOf = HelperInterface::class;
}