Skip to content

Commit

Permalink
move infrastructure related classes in tests under infrastructure ns
Browse files Browse the repository at this point in the history
  • Loading branch information
albertborsos committed Aug 30, 2019
1 parent 55530a8 commit f7dcec2
Show file tree
Hide file tree
Showing 46 changed files with 77 additions and 77 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use albertborsos\ddd\behaviors\SluggableBehavior;
use albertborsos\ddd\behaviors\TimestampBehavior;
use albertborsos\ddd\models\AbstractEntity;
use albertborsos\ddd\tests\support\base\domains\customer\mysql\CustomerWithBehaviorsActiveRepository;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\CustomerWithBehaviorsActiveRepository;

/**
* Class Customer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace albertborsos\ddd\tests\support\base\domains\page\behaviors;

use albertborsos\ddd\behaviors\AbstractUniqueSluggableBehavior;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageSlugActiveRepositoryInterface;

class PageSluggableBehavior extends AbstractUniqueSluggableBehavior
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\cache;
namespace albertborsos\ddd\tests\support\base\infrastructure\cache\customer;

use albertborsos\ddd\repositories\CacheRepository;
use albertborsos\ddd\tests\support\base\domains\customer\entities\CustomerAddress;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerAddressCacheRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerAddressCacheRepositoryInterface;

class CustomerAddressCacheRepository extends CacheRepository implements CustomerAddressCacheRepositoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\cache;
namespace albertborsos\ddd\tests\support\base\infrastructure\cache\customer;

use albertborsos\ddd\repositories\CacheRepository;
use albertborsos\ddd\tests\support\base\domains\customer\entities\Customer;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerCacheRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerCacheRepositoryInterface;

class CustomerCacheRepository extends CacheRepository implements CustomerCacheRepositoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\interfaces;
namespace albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer;

use albertborsos\ddd\interfaces\ActiveRepositoryInterface;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\interfaces;
namespace albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer;

use albertborsos\ddd\interfaces\ActiveRepositoryInterface;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\interfaces;
namespace albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer;

use albertborsos\ddd\interfaces\CacheRepositoryInterface;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\interfaces;
namespace albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer;

use albertborsos\ddd\interfaces\CacheRepositoryInterface;

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

namespace albertborsos\ddd\tests\support\base\domains\page\interfaces;
namespace albertborsos\ddd\tests\support\base\infrastructure\interfaces\page;

use albertborsos\ddd\interfaces\ActiveRepositoryInterface;

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

namespace albertborsos\ddd\tests\support\base\domains\page\interfaces;
namespace albertborsos\ddd\tests\support\base\infrastructure\interfaces\page;

use albertborsos\ddd\interfaces\ActiveRepositoryInterface;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\tests\support\base\domains\customer\traits\CustomerAttributeLabelsTrait;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface;
use yii\data\BaseDataProvider;

class CustomerActiveRepository extends AbstractActiveRepository implements CustomerActiveRepositoryInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\tests\support\base\domains\customer\traits\CustomerAddressAttributeLabelsTrait;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerAddressActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerAddressActiveRepositoryInterface;
use yii\data\BaseDataProvider;

class CustomerAddressActiveRepository extends AbstractActiveRepository implements CustomerAddressActiveRepositoryInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface;
use yii\data\BaseDataProvider;

class CustomerWithBehaviorsActiveRepository extends CustomerActiveRepository
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\interfaces\EntityInterface;
use yii\base\ModelEvent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface;
use yii\base\Model;
use yii\data\BaseDataProvider;

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

namespace albertborsos\ddd\tests\support\base\domains\customer\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\customer;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\tests\support\base\InvalidHydrator;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface;
use yii\base\Model;
use yii\data\BaseDataProvider;

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

namespace albertborsos\ddd\tests\support\base\domains\page\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\page;

use albertborsos\ddd\tests\support\base\domains\page\traits\PageAttributeLabelsTrait;

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

namespace albertborsos\ddd\tests\support\base\domains\page\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\page;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\tests\support\base\domains\page\entities\Page;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface;
use yii\data\BaseDataProvider;

class PageActiveRepository extends AbstractActiveRepository implements PageActiveRepositoryInterface
{
protected $dataModelClass = \albertborsos\ddd\tests\support\base\domains\page\mysql\Page::class;
protected $dataModelClass = \albertborsos\ddd\tests\support\base\infrastructure\mysql\page\Page::class;

protected $entityClass = \albertborsos\ddd\tests\support\base\domains\page\entities\Page::class;

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

namespace albertborsos\ddd\tests\support\base\domains\page\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\page;

/**
* This is the ActiveQuery class for [[Page]].
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\page\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\page;

use albertborsos\ddd\tests\support\base\domains\page\traits\PageSlugAttributeLabelsTrait;

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

namespace albertborsos\ddd\tests\support\base\domains\page\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\page;

use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\data\ActiveEntityDataProvider;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageSlugActiveRepositoryInterface;
use yii\data\BaseDataProvider;

class PageSlugActiveRepository extends AbstractActiveRepository implements PageSlugActiveRepositoryInterface
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace albertborsos\ddd\tests\support\base\domains\page\mysql;
namespace albertborsos\ddd\tests\support\base\infrastructure\mysql\page;

/**
* This is the ActiveQuery class for [[PageSlug]].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use albertborsos\ddd\interfaces\ActiveRepositoryInterface;
use albertborsos\ddd\models\AbstractActiveService;
use albertborsos\ddd\tests\support\base\domains\customer\entities\Customer;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\services\customer\forms\AbstractCustomerForm;

abstract class AbstractCustomerService extends AbstractActiveService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use albertborsos\ddd\interfaces\FormObject;
use albertborsos\ddd\traits\ActiveFormTrait;
use albertborsos\ddd\tests\support\base\domains\customer\entities\Customer;
use albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface;

abstract class AbstractCustomerForm extends Customer implements FormObject
{
Expand Down
2 changes: 1 addition & 1 deletion tests/_support/base/services/page/AbstractPageService.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use albertborsos\ddd\interfaces\ActiveRepositoryInterface;
use albertborsos\ddd\models\AbstractActiveService;
use albertborsos\ddd\tests\support\base\domains\page\entities\Page;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\services\page\forms\AbstractPageForm;

abstract class AbstractPageService extends AbstractActiveService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use albertborsos\ddd\interfaces\ActiveRepositoryInterface;
use albertborsos\ddd\models\AbstractActiveService;
use albertborsos\ddd\tests\support\base\domains\page\entities\PageSlug;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\services\page\forms\AbstractPageSlugForm;

abstract class AbstractPageSlugService extends AbstractActiveService
Expand Down
4 changes: 2 additions & 2 deletions tests/_support/base/services/page/DeletePageService.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace albertborsos\ddd\tests\support\base\services\page;

use albertborsos\ddd\tests\support\base\domains\page\entities\Page;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageImageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\domains\page\mysql\PageImageActiveRepository;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageImageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\page\PageImageActiveRepository;
use albertborsos\ddd\tests\support\base\services\page\forms\DeletePageForm;

class DeletePageService extends AbstractPageService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use albertborsos\ddd\interfaces\FormObject;
use albertborsos\ddd\traits\ActiveFormTrait;
use albertborsos\ddd\tests\support\base\domains\page\entities\Page;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface;

abstract class AbstractPageForm extends Page implements FormObject
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use albertborsos\ddd\interfaces\FormObject;
use albertborsos\ddd\traits\ActiveFormTrait;
use albertborsos\ddd\tests\support\base\domains\page\entities\PageSlug;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface;

abstract class AbstractPageSlugForm extends PageSlug implements FormObject
{
Expand Down
12 changes: 6 additions & 6 deletions tests/config/main.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
'container' => [
'definitions' => [
\albertborsos\ddd\interfaces\HydratorInterface::class => \albertborsos\ddd\hydrators\ActiveHydrator::class,
\albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\domains\customer\mysql\CustomerActiveRepository::class,
\albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerCacheRepositoryInterface::class => \albertborsos\ddd\tests\support\base\domains\customer\cache\CustomerCacheRepository::class,
\albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerAddressActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\domains\customer\mysql\CustomerAddressActiveRepository::class,
\albertborsos\ddd\tests\support\base\domains\customer\interfaces\CustomerAddressCacheRepositoryInterface::class => \albertborsos\ddd\tests\support\base\domains\customer\cache\CustomerAddressCacheRepository::class,
\albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\domains\page\mysql\PageActiveRepository::class,
\albertborsos\ddd\tests\support\base\domains\page\interfaces\PageSlugActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\domains\page\mysql\PageSlugActiveRepository::class,
\albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\CustomerActiveRepository::class,
\albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerCacheRepositoryInterface::class => \albertborsos\ddd\tests\support\base\infrastructure\cache\customer\CustomerCacheRepository::class,
\albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerAddressActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\CustomerAddressActiveRepository::class,
\albertborsos\ddd\tests\support\base\infrastructure\interfaces\customer\CustomerAddressCacheRepositoryInterface::class => \albertborsos\ddd\tests\support\base\infrastructure\cache\customer\CustomerAddressCacheRepository::class,
\albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\infrastructure\mysql\page\PageActiveRepository::class,
\albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageSlugActiveRepositoryInterface::class => \albertborsos\ddd\tests\support\base\infrastructure\mysql\page\PageSlugActiveRepository::class,
],
],
];
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/CustomerFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace albertborsos\ddd\tests\fixtures;

use albertborsos\ddd\tests\support\base\domains\customer\mysql\Customer;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\Customer;
use yii\test\ActiveFixture;

class CustomerFixtures extends ActiveFixture
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/CustomerWithBehaviorsFixtures.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace albertborsos\ddd\tests\fixtures;

use albertborsos\ddd\tests\support\base\domains\customer\mysql\Customer;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\Customer;
use yii\test\ActiveFixture;

class CustomerWithBehaviorsFixtures extends ActiveFixture
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/PageFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace albertborsos\ddd\tests\fixtures;

use albertborsos\ddd\tests\support\base\domains\page\mysql\Page;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\page\Page;
use yii\test\ActiveFixture;

class PageFixture extends ActiveFixture
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/PageSlugFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace albertborsos\ddd\tests\fixtures;

use albertborsos\ddd\tests\support\base\domains\page\mysql\PageSlug;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\page\PageSlug;
use yii\test\ActiveFixture;

class PageSlugFixture extends ActiveFixture
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/behaviors/AbstractUniqueSluggableBehaviorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
use albertborsos\ddd\interfaces\EntityInterface;
use albertborsos\ddd\tests\support\base\domains\page\entities\Page;
use albertborsos\ddd\tests\support\base\domains\page\entities\PageSlug;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\domains\page\interfaces\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\infrastructure\interfaces\page\PageSlugActiveRepositoryInterface;
use albertborsos\ddd\tests\support\base\services\page\AbstractPageService;
use albertborsos\ddd\tests\support\base\services\page\CreatePageService;
use albertborsos\ddd\tests\support\base\services\page\forms\CreatePageForm;
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/behaviors/BlameableBehaviorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
use albertborsos\ddd\repositories\AbstractActiveRepository;
use albertborsos\ddd\tests\fixtures\CustomerWithBehaviorsFixtures;
use albertborsos\ddd\tests\support\base\domains\customer\entities\CustomerWithBehaviors;
use albertborsos\ddd\tests\support\base\domains\customer\mysql\CustomerWithBehaviorsActiveRepository;
use albertborsos\ddd\tests\support\base\domains\customer\mysql\CustomerWithModifiedBehaviorsActiveRepository;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\CustomerWithBehaviorsActiveRepository;
use albertborsos\ddd\tests\support\base\infrastructure\mysql\customer\CustomerWithModifiedBehaviorsActiveRepository;
use Codeception\PHPUnit\TestCase;
use yii\test\FixtureTrait;

Expand Down

0 comments on commit f7dcec2

Please sign in to comment.