| 1 | <?php |
||
| 8 | class UseCase |
||
| 9 | { |
||
| 10 | /** @var DomainRepositoryInterface */ |
||
| 11 | private $domainRepository; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * UseCase constructor. |
||
| 15 | * |
||
| 16 | * @param DomainRepositoryInterface $domainRepository |
||
| 17 | */ |
||
| 18 | public function __construct(DomainRepositoryInterface $domainRepository) |
||
| 22 | |||
| 23 | public function handle(Command $command) |
||
| 34 | } |
||
| 35 |