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

Commit

Permalink
Merge remote-tracking branch 'prolic/stdlib' into prolic-zen-52
Browse files Browse the repository at this point in the history
  • Loading branch information
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/Options.php → src/AbstractOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class Options implements ParameterObjectInterface
abstract class AbstractOptions implements ParameterObjectInterface
{
/**
* @param array|Traversable|null $options
* @return Options
* @return AbstractOptions
* @throws Exception\InvalidArgumentException
*/
public function __construct($options = null)
Expand Down
4 changes: 2 additions & 2 deletions src/DispatchableInterface.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
namespace Zend\Stdlib;

use Zend\Stdlib\ResponseInterface as Response,
Zend\Stdlib\RequestInterface as Request;
use Zend\Stdlib\ResponseInterface as Response;
use Zend\Stdlib\RequestInterface as Request;

interface DispatchableInterface
{
Expand Down
8 changes: 4 additions & 4 deletions test/OptionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace ZendTest\Stdlib;

use ArrayObject,
ZendTest\Stdlib\TestAsset\TestOptions,
ZendTest\Stdlib\TestAsset\TestTraversable,
Zend\Stdlib\Exception\InvalidArgumentException;
use ArrayObject;
use ZendTest\Stdlib\TestAsset\TestOptions;
use ZendTest\Stdlib\TestAsset\TestTraversable;
use Zend\Stdlib\Exception\InvalidArgumentException;

class OptionsTest extends \PHPUnit_Framework_TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions test/PriorityQueueTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@

namespace ZendTest\Stdlib;

use Zend\Stdlib\PriorityQueue,
SplPriorityQueue;
use Zend\Stdlib\PriorityQueue;
use SplPriorityQueue;

/**
* @category Zend
Expand Down
4 changes: 2 additions & 2 deletions test/TestAsset/TestOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace ZendTest\Stdlib\TestAsset;

use Zend\Stdlib\Options;
use Zend\Stdlib\AbstractOptions;

/**
* Dummy TestOptions used to test Stdlib\Options
*/
class TestOptions extends Options
class TestOptions extends AbstractOptions
{
protected $testField;

Expand Down

0 comments on commit d1cba17

Please sign in to comment.