Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Revise docblocks in Zend\Session\ContainerAbstractServiceFactory #4981

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions library/Zend/Session/Service/ContainerAbstractServiceFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,15 @@
* <code>
* return array(
* 'session_containers' => array(
* 'auth',
* 'user',
* 'captcha',
* 'SessionContainer\sample',
* 'my_sample_session_container',
* 'MySessionContainer',
* ),
* );
* </code>
*
* Services use the prefix "SessionContainer\\":
*
* <code>
* $container = $services->get('SessionContainer\captcha');
* $container = $services->get('MySessionContainer');
* </code>
*/
class ContainerAbstractServiceFactory implements AbstractFactoryInterface
Expand Down Expand Up @@ -139,8 +137,6 @@ protected function getSessionManager(ServiceLocatorInterface $services)
/**
* Normalize the container name in order to perform a lookup
*
* Strips off the "SessionContainer\" prefix, and lowercases the name.
*
* @param string $name
* @return string
*/
Expand Down