Skip to content

Commit

Permalink
Moving Files
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuriy Kozyrev committed Aug 6, 2014
1 parent c2e9655 commit 0e8c982
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
@@ -1,6 +1,6 @@
<?php

namespace Kozz\Components;
namespace Kozz\Components\Collection;

use ArrayAccess;
use Closure;
Expand All @@ -12,6 +12,7 @@
use SplQueue;
use Traversable;
use ArrayIterator;
use Kozz\Interfaces\IArrayable;

class Collection implements ArrayAccess, IteratorAggregate, Countable, IArrayable
{
Expand Down
Expand Up @@ -3,7 +3,7 @@
* @author Ura Kozyrev <yk@multiship.ru>
*/

namespace Kozz\Components;
namespace Kozz\Interfaces;


interface IArrayable {
Expand Down
4 changes: 2 additions & 2 deletions tests/CollectionTest.php
Expand Up @@ -6,15 +6,15 @@
namespace Kozz\Tests;


use Kozz\Components\Collection;
use Kozz\Components\Collection\Collection;

class CollectionTest extends \PHPUnit_Framework_TestCase
{

public function testInit()
{
$collection = new Collection();
$this->assertInstanceOf('Kozz\Components\Collection', $collection);
$this->assertInstanceOf('Kozz\Components\Collection\Collection', $collection);
}

public function testArrayAccessCountable()
Expand Down
2 changes: 1 addition & 1 deletion tests/Mock.php
Expand Up @@ -6,7 +6,7 @@
namespace Kozz\Tests;


use Kozz\Components\IArrayable;
use Kozz\Interfaces\IArrayable;

class Mock implements IArrayable
{
Expand Down
2 changes: 1 addition & 1 deletion tests/PerformanceTest.php
Expand Up @@ -9,7 +9,7 @@
ini_set('xdebug.profiler_enable', 0);
if(function_exists('xdebug_disable')) { xdebug_disable(); }

use Kozz\Components\Collection;
use Kozz\Components\Collection\Collection;
use Symfony\Component\Stopwatch\Stopwatch;

class PerformanceTest extends \PHPUnit_Framework_TestCase
Expand Down

0 comments on commit 0e8c982

Please sign in to comment.