Skip to content

Commit

Permalink
Add DomainServiceInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Sep 15, 2019
1 parent 23b8651 commit afbdc06
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
11 changes: 0 additions & 11 deletions src/Domain/Base/DomainServiceInterface.php

This file was deleted.

10 changes: 10 additions & 0 deletions src/Domain/Service/DomainServiceInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace App\Domain\Service;

/**
* Domain Service Interface.
*/
interface DomainServiceInterface
{
}
4 changes: 2 additions & 2 deletions src/Domain/User/UserCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace App\Domain\User;

use App\Domain\Base\DomainServiceInterface;
use App\Domain\Service\DomainServiceInterface;
use App\Factory\LoggerFactory;
use Psr\Log\LoggerInterface;

/**
* Domain Service
* Domain Service.
*/
final class UserCreator implements DomainServiceInterface
{
Expand Down

0 comments on commit afbdc06

Please sign in to comment.