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

Commit

Permalink
Merge branch 'master' of git://github.com/zendframework/zf2
Browse files Browse the repository at this point in the history
Fixed files permissions
  • Loading branch information
Show file tree
Hide file tree
Showing 11 changed files with 2 additions and 43 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev",
"dev-develop": "2.5-dev"
"dev-master": "2.1-dev",
"dev-develop": "2.2-dev"
}
},
"autoload-dev": {
Expand Down
4 changes: 0 additions & 4 deletions src/Container/AbstractContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Container;

/**
* Memory value container
*
* @category Zend
* @package Zend_Memory
*/
abstract class AbstractContainer implements ContainerInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Container/AccessController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Container;
Expand All @@ -21,9 +20,6 @@
* out of scope or unset operation.
*
* Class also provides Zend\Memory\Container interface and works as proxy for such cases.
*
* @category Zend
* @package Zend_Memory
*/
class AccessController implements ContainerInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Container/ContainerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Container;

/**
* Memory value container interface
*
* @category Zend
* @package Zend_Memory
*/
interface ContainerInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/Container/Locked.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Container;
Expand All @@ -14,9 +13,6 @@
* Memory value container
*
* Locked (always stored in memory).
*
* @category Zend
* @package Zend_Memory
*/
class Locked extends AbstractContainer
{
Expand Down
4 changes: 0 additions & 4 deletions src/Container/Movable.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Container;
Expand All @@ -17,9 +16,6 @@
* Memory value container
*
* Movable (may be swapped with specified backend and unloaded).
*
* @category Zend
* @package Zend_Memory
*/
class Movable extends AbstractContainer
{
Expand Down
5 changes: 0 additions & 5 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,9 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Exception;

/**
* @category Zend
* @package Zend_Memory
*/
interface ExceptionInterface
{}
4 changes: 0 additions & 4 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Exception;

/**
* Exception for Zend_Memory component.
*
* @category Zend
* @package Zend_Memory
*/
class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
Expand Down
4 changes: 0 additions & 4 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory\Exception;

/**
* Exception for Zend_Memory component.
*
* @category Zend
* @package Zend_Memory
*/
class RuntimeException extends \RuntimeException implements ExceptionInterface
{
Expand Down
4 changes: 0 additions & 4 deletions src/MemoryManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory;
Expand All @@ -19,9 +18,6 @@
*
* This class encapsulates memory menagement operations, when PHP works
* in limited memory mode.
*
* @category Zend
* @package Zend_Memory
*/
class MemoryManager
{
Expand Down
4 changes: 0 additions & 4 deletions src/Value.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Memory
*/

namespace Zend\Memory;
Expand All @@ -18,9 +17,6 @@
*
* It's an OO string wrapper.
* Used to intercept string updates.
*
* @category Zend
* @package Zend_Memory
*/
class Value implements ArrayAccess, Countable
{
Expand Down

0 comments on commit 16acbbd

Please sign in to comment.