The interface Laminas\ServiceManager\FactoryInterface has been deprecated with message: Use Laminas\ServiceManager\Factory\FactoryInterface instead.
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
20
{
21
/** @var string */
22
private $name;
23
24
1
public function __construct(string $name)
25
{
26
1
$this->name = ucfirst(strtolower($name));
27
1
}
28
29
/**
30
* {@inheritDoc}
31
*
32
* @return AbstractCommand
33
*
34
* @throws InvalidArgumentException
35
*/
36
1
public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null)
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.