Skip to content
This repository has been archived by the owner on Jan 31, 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
  • Loading branch information
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 27 deletions.
4 changes: 2 additions & 2 deletions src/ArrayStack.php
Expand Up @@ -20,8 +20,8 @@

namespace Zend\Stdlib;

use ArrayIterator,
ArrayObject;
use ArrayIterator;
use ArrayObject;

/**
* ArrayObject that acts as a stack with regards to iteration
Expand Down
6 changes: 3 additions & 3 deletions src/CallbackHandler.php
Expand Up @@ -20,9 +20,9 @@

namespace Zend\Stdlib;

use Closure,
ReflectionClass,
WeakRef;
use Closure;
use ReflectionClass;
use WeakRef;

/**
* CallbackHandler
Expand Down
4 changes: 1 addition & 3 deletions src/Exception/BadMethodCallException.php
Expand Up @@ -28,8 +28,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class BadMethodCallException
extends \BadMethodCallException
implements ExceptionInterface
class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface
{
}
4 changes: 1 addition & 3 deletions src/Exception/DomainException.php
Expand Up @@ -2,8 +2,6 @@

namespace Zend\Stdlib\Exception;

class DomainException
extends \DomainException
implements ExceptionInterface
class DomainException extends \DomainException implements ExceptionInterface
{
}
4 changes: 1 addition & 3 deletions src/Exception/InvalidArgumentException.php
Expand Up @@ -2,8 +2,6 @@

namespace Zend\Stdlib\Exception;

class InvalidArgumentException
extends \InvalidArgumentException
implements ExceptionInterface
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
{
}
4 changes: 1 addition & 3 deletions src/Exception/InvalidCallbackException.php
Expand Up @@ -28,8 +28,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class InvalidCallbackException
extends \DomainException
implements ExceptionInterface
class InvalidCallbackException extends DomainException implements ExceptionInterface
{
}
4 changes: 1 addition & 3 deletions src/Exception/LogicException.php
Expand Up @@ -28,8 +28,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class LogicException
extends \LogicException
implements ExceptionInterface
class LogicException extends \LogicException implements ExceptionInterface
{
}
8 changes: 4 additions & 4 deletions src/ParametersInterface.php
Expand Up @@ -2,10 +2,10 @@

namespace Zend\Stdlib;

use ArrayAccess,
Countable,
Serializable,
Traversable;
use ArrayAccess;
use Countable;
use Serializable;
use Traversable;

/*
* Basically, an ArrayObject. You could simply define something like:
Expand Down
6 changes: 3 additions & 3 deletions src/PriorityQueue.php
Expand Up @@ -20,9 +20,9 @@

namespace Zend\Stdlib;

use Countable,
IteratorAggregate,
Serializable;
use Countable;
use IteratorAggregate;
use Serializable;

/**
* Re-usable, serializable priority queue implementation
Expand Down

0 comments on commit d0a0154

Please sign in to comment.