Interface PluginManagerInterface

Summary

Fully Qualified Name: Zend\ServiceManager\PluginManagerInterface
Extends: ServiceLocatorInterface

Description

Interface for a plugin manager

A plugin manager is a specialized service locator used to create homogeneous objects

Methods

Name Description Defined By
build() Build a service by its name, using optional options (such services are NEVER cached). ServiceLocatorInterface
validate() Validate an instance PluginManagerInterface

Method Details

build()

Build a service by its name, using optional options (such services are NEVER cached).

Parameter Name Type Description
$name string
$options null|array

Returns: mixed

validate()

Validate an instance

Parameter Name Type Description
$instance object

Returns: void

Top