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

Commit

Permalink
Merge pull request zendframework/zendframework#2144 from PHPGangsta/f…
Browse files Browse the repository at this point in the history
…ixes/phpdocClassesAndNamespaces

fixed a lot of phpDoc comments
  • Loading branch information
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/MemoryManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ private function _generateMemManagerId()
* If cache is not specified, then memory objects are never swapped
*
* @param CacheStorage $cache
* @return void
*/
public function __construct(CacheStorage $cache = null)
{
Expand Down Expand Up @@ -224,8 +223,8 @@ public function getMinSize()
* Create new Zend_Memory value container
*
* @param string $value
* @return \Zend\Memory\Container
* @throws \Zend\Memory\Exception
* @return Container\ContainerInterface
* @throws Exception\ExceptionInterface
*/
public function create($value = '')
{
Expand All @@ -237,8 +236,8 @@ public function create($value = '')
* locked in memory
*
* @param string $value
* @return \Zend\Memory\Container
* @throws \Zend\Memory\Exception
* @return Container\ContainerInterface
* @throws Exception\ExceptionInterface
*/
public function createLocked($value = '')
{
Expand All @@ -250,8 +249,8 @@ public function createLocked($value = '')
*
* @param string $value
* @param boolean $locked
* @return \Zend\Memory\Container
* @throws \Zend\Memory\Exception
* @return \Zend\Memory\Container\ContainerInterface
* @throws \Zend\Memory\Exception\ExceptionInterface
*/
private function _create($value, $locked)
{
Expand Down Expand Up @@ -280,8 +279,9 @@ private function _create($value, $locked)
* Used by Memory container destroy() method
*
* @internal
* @param Container\Movable $container
* @param integer $id
* @return \Zend\Memory\Container\AbstractContainer
* @return null
*/
public function unlink(Container\Movable $container, $id)
{
Expand Down

0 comments on commit 7cb373f

Please sign in to comment.