microservices-playground/api-comments

View on GitHub
src/AppBundle/Mapper/DtoToEntityMapper.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Foodlove\AppBundle\Mapper;

use Foodlove\AppBundle\Dto\Dto;
use Foodlove\AppBundle\Entity\Entity;

interface DtoToEntityMapper
{
    public function transform(Dto $dto): Entity;
}