D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
laminas
/
laminas-servicemanager
/
src
/
Filename :
PluginManagerInterface.php
back
Copy
<?php declare(strict_types=1); namespace Laminas\ServiceManager; use Laminas\ServiceManager\Exception\InvalidServiceException; use Psr\Container\ContainerExceptionInterface; /** * Interface for a plugin manager * * A plugin manager is a specialized service locator used to create homogeneous objects * * @template InstanceType */ interface PluginManagerInterface extends ServiceLocatorInterface { /** * Validate an instance * * @return void * @throws InvalidServiceException If created instance does not respect the * constraint on type imposed by the plugin manager. * @throws ContainerExceptionInterface If any other error occurs. * @psalm-assert InstanceType $instance */ public function validate(mixed $instance); }