D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
laminas
/
laminas-servicemanager
/
src
/
Factory
/
Filename :
InvokableFactory.php
back
Copy
<?php declare(strict_types=1); namespace Laminas\ServiceManager\Factory; use Psr\Container\ContainerInterface; /** * Factory for instantiating classes with no dependencies or which accept a single array. * * The InvokableFactory can be used for any class that: * * - has no constructor arguments; * - accepts a single array of arguments via the constructor. * * It replaces the "invokables" and "invokable class" functionality of the v2 * service manager. */ final class InvokableFactory implements FactoryInterface { /** {@inheritDoc} */ public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) { return null === $options ? new $requestedName() : new $requestedName($options); } }