Skip to content
This repository has been archived by the owner on Feb 22, 2021. It is now read-only.

Commit

Permalink
fix namespace to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
cordoval committed Sep 11, 2014
1 parent 3ac077e commit 5f00019
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace spec\Coduo\PhpSpec\Annotation;
namespace spec\Coduo\PhpSpec\Annotation\DataProvider;

use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Coduo\PhpSpec\Annotation;
namespace Coduo\PhpSpec\DataProvider\Annotation;

class Parser
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace Coduo\PhpSpec;
namespace Coduo\PhpSpec\DataProvider;

use Coduo\PhpSpec\Listener\DataProviderListener;
use Coduo\PhpSpec\Runner\Maintainer\DataProviderMaintainer;
use Coduo\PhpSpec\DataProvider\Listener\DataProviderListener;
use Coduo\PhpSpec\DataProvider\Runner\Maintainer\DataProviderMaintainer;
use PhpSpec\Extension\ExtensionInterface;
use PhpSpec\ServiceContainer;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Coduo\PhpSpec\Listener;
namespace Coduo\PhpSpec\DataProvider\Listener;

use Coduo\PhpSpec\Annotation\Parser;
use Coduo\PhpSpec\DataProvider\Annotation\Parser;
use PhpSpec\Loader\Node\ExampleNode;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use PhpSpec\Event\SpecificationEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

class DataProviderListener implements EventSubscriberInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace Coduo\PhpSpec\Runner\Maintainer;
namespace Coduo\PhpSpec\DataProvider\Runner\Maintainer;

use Coduo\PhpSpec\Annotation\Parser;
use Coduo\PhpSpec\DataProvider\Annotation\Parser;
use PhpSpec\Loader\Node\ExampleNode;
use PhpSpec\Runner\Maintainer\MaintainerInterface;
use PhpSpec\SpecificationInterface;
Expand Down

0 comments on commit 5f00019

Please sign in to comment.