Skip to content

Commit

Permalink
fix(master) - Rename Base\Application namespace to Base\Domain.
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Onyshchenko committed Apr 24, 2020
1 parent 45d7c93 commit fc88e81
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"enqueue/null": "^0.10",
"league/tactician-bundle": "^1.1",
"league/tactician-command-events": "^0.6.0",
"micro-module/base": "^0.4.0",
"psr/log": "^1.1"
},
"require-dev": {
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ services:
context: .docker/php7.3-dev
volumes:
- ~/.composer/cache/:/.composer_cache/:rw
- ..:/packages:rw
working_dir: /packages/Task
- .:/app:rw
working_dir: /app
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace MicroModule\Task\Application\EventListener;

use MicroModule\Base\Application\Command\CommandInterface;
use MicroModule\Base\Domain\Command\CommandInterface;
use Interop\Queue\Message;

/**
Expand Down
4 changes: 2 additions & 2 deletions src/Application/Processor/JobCommandBusProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

namespace MicroModule\Task\Application\Processor;

use MicroModule\Base\Application\Command\CommandInterface;
use MicroModule\Base\Application\Factory\CommandFactoryInterface;
use MicroModule\Base\Domain\Command\CommandInterface;
use MicroModule\Base\Domain\Factory\CommandFactoryInterface;
use MicroModule\Base\Utils\LoggerTrait;
use MicroModule\Task\Application\EventListener\JobCommandBusEventListenerInterface;
use Assert\Assertion;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

namespace MicroModule\Task\Tests\Unit\Application\Processor;

use MicroModule\Base\Application\Command\CommandInterface;
use MicroModule\Base\Application\Factory\CommandFactoryInterface;
use MicroModule\Base\Domain\Command\CommandInterface;
use MicroModule\Base\Domain\Factory\CommandFactoryInterface;
use MicroModule\Task\Application\Processor\JobCommandBusProcessor;
use MicroModule\Task\Infrastructure\Service\Test\JobRunner;
use Broadway\EventDispatcher\Testing\TraceableEventDispatcher;
Expand Down

0 comments on commit fc88e81

Please sign in to comment.