edmondscommerce/doctrine-static-meta

View on GitHub
src/Entity/Savers/NewUpsertDtoDataModifierInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace EdmondsCommerce\DoctrineStaticMeta\Entity\Savers;

use EdmondsCommerce\DoctrineStaticMeta\Entity\Interfaces\DataTransferObjectInterface;

interface NewUpsertDtoDataModifierInterface
{
    public function addDataToNewlyCreatedDto(DataTransferObjectInterface $dto): void;
}