国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

? ??? ?? PHP ???? PHP?? DDD ?? ?? ??

PHP?? DDD ?? ?? ??

Nov 12, 2024 pm 10:18 PM

Implementing a DDD Use Case in PHP

PHP?? DDD ?? ?? ??

? ????? PHP? ??? ?? ???(DDD) ?? ?? ??? ???? ?????? ???? ???? ???? ??? ???? ???? ??? ?????. ??? ???(TaxManagerInterface)? ???? ??? ???? ?? ?? ???? ???? TaxPersistUseCase ???? ???????.

? ??? DDD ??? ?????. ? ?? ??? ??? ?? ? ?? ??? ?? ??? ?? ?????, ???? ?? ? ??? ???? ?????.

TaxPersistUseCase? ??

TaxPersistUseCase ???? ?? ??? ??? ???? ??? ?????. ? ?? ??? ??? ??? ??? ?? ?? ?? ???? ???? ????.

??? ??

namespace Domain\Application\UseCase\Order;

use Domain\Application\Entity\Order\Tax;
use Domain\Application\Gateway\Manager\Order\TaxManagerInterface;
use Domain\Application\UseCase\Order\Exception\NotFoundException;
use Domain\Application\UseCase\Order\Interfaces\TaxPersistRequestInterface;
use Domain\Application\UseCase\Order\Interfaces\TaxPersistResponseInterface;
use Domain\Exception\BadRequestException;
use Domain\Exception\FormException;
use Small\CleanApplication\Contract\UseCaseInterface;
use Small\Collection\Collection\StringCollection;
use Small\SwooleEntityManager\EntityManager\Exception\EmptyResultException;

TaxPersistUseCase ???? ?? ???? ???? ?? ?? ?????? ??? ?????. ??? ??? ????.

TaxManagerInterface : ?? ??? ???? ?? ????????.

TaxPersistRequestInterface ? TaxPersistResponseInterface: ?? ??? ?? ? ??? ?? ?????
??: BadRequestException, FormException ? NotFoundException? ?? ??? ??? ??? ??? ???? ? ??? ???.

TaxPersistUseCase ??? ??

namespace Domain\Application\UseCase\Order;

use Domain\Application\Entity\Order\Tax;
use Domain\Application\Gateway\Manager\Order\TaxManagerInterface;
use Domain\Application\UseCase\Order\Exception\NotFoundException;
use Domain\Application\UseCase\Order\Interfaces\TaxPersistRequestInterface;
use Domain\Application\UseCase\Order\Interfaces\TaxPersistResponseInterface;
use Domain\Exception\BadRequestException;
use Domain\Exception\FormException;
use Small\CleanApplication\Contract\UseCaseInterface;
use Small\Collection\Collection\StringCollection;
use Small\SwooleEntityManager\EntityManager\Exception\EmptyResultException;
  • ??? ? ??? ??: ???? TaxManagerInterface? ????? ???? TaxPersistUseCase? ?? ??? ???? ?? Tax ??? ???? ? ????? ?????.
  • ?? ?? ??: ?? ???? $request ??? TaxPersistRequestInterface? ????? ?????. ??? ?? ??? ??? ?? ??? ????? ???? ????? ?? ??? ??? ?????.
  • ?? ?? ??: ??? ??? ?? ?? ???? getTax()? ?? $request?? ?? ??? ???? TaxManagerInterface?? applicationPersist ???? ?????. ? ??? ????? ???? ??? ???? ?? try-catch ?? ?? ??????
  • EmptyResultException: ?? ???? ?? ? ?? ?? ? ??? ???? NotFoundException? ???? ??? ????.
  • FormException: ?? ??? ??? ???? FormException? ???? ?? ???? StringCollection? ?????.
  • ?? ???? ?? ?? ??: ?? ???? TaxPersistResponseInterface? ???? ?? ??? ??? ?????. ???? getTax() ? getMessages() ???? ???? ??? ?? Tax ??? ? ?? ???? ???? ? ????.

?? ?? ?????

?????? ? ?? ??? ???? ?? ??? ???? ?? ? ??? ???? ?????.

?? ??? ?????

? ?????? ?? ? ???? ??? ?? ?? ??? ?????.

class TaxPersistUseCase implements UseCaseInterface
{

    public function __construct(
        protected TaxManagerInterface $taxManager,
    ) {}

    public function execute(mixed $request): TaxPersistResponseInterface
    {

        if (!$request instanceof TaxPersistRequestInterface) {
            throw new BadRequestException(
                self::class . ' accepts only request instance of ' . TaxPersistRequestInterface::class
            );
        }

        $tax = $request->getTax();
        $messages = new StringCollection();

        try {
            $this->taxManager->applicationPersist($tax);
        } catch (EmptyResultException $e) {
            throw new NotFoundException($e->getMessage());
        } catch (FormException $e) {
            $messages = $e->getFormMessages();
        }

        return new class($tax, $messages) implements TaxPersistResponseInterface
        {
            public function __construct(
                protected readonly Tax $tax,
                protected readonly StringCollection $messages,
            ) {}

            public function getTax(): Tax
            {
                return $this->tax;
            }

            public function getMessages(): StringCollection
            {
                return $this->messages;
            }
        };

    }

}
  • findById() ? findByName(): ? ???? ???? ID ?? ???? ??? ??? ? ????.
  • applicationPersist(): ? ???? ?? ??? ???? ?????.

TaxPersistRequest?????

? ?????? TaxPersistUseCase?? ???? ?? ??? ?????.

interface TaxManagerInterface
{
    public function findById(int $id): Tax;
    public function findByName(string $name): Tax;
    public function applicationPersist(Tax $tax): self;
}
  • getTax(): ? ???? ??? ?? ???? ???? ?? ??? ?? ??? ??? ?? ???? ? ??? ???. TaxPersistResponse?????
  • ?? ?????? TaxPersistUseCase? ??? ???? ??? ????? ?????.
interface TaxPersistRequestInterface extends RequestInterface
{
    public function getTax(): Tax;
}
  • getTax(): ??? ?? ???? ????? ??? ??? ?? null? ?????.
  • getMessages(): ?? ??? ??? ?? ?? ???? ??? StringCollection? ?????.

?? ? ?? ??

??? ???? ??? ???? DDD?? ??? ??? ???.

  • BadRequestException: ?? ??? ??? ??? ??? ?? ?? ?????.
  • NotFoundException: ?? ?? ?? ??? ?? ? ?? ?? ?????.
  • FormException: ??? ?? ??? ???? ?? ?????? StringCollection? ?? ???? ???????.

? ??? PHP?? DDD ?? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

?? ????
1744
16
Cakephp ????
1599
56
??? ????
1539
28
PHP ????
1397
31
???
PHP ?? API ????? ?? ??? ?????? PHP ?? API ????? ?? ??? ?????? Jun 14, 2025 am 12:27 AM

ToversionAphp ??, forclarityandeasofrouting, ac

PHP?? ?? ? ??? ????? ????????? PHP?? ?? ? ??? ????? ????????? Jun 20, 2025 am 01:03 AM

TOSECURELYHANDLEAUSTENCENDACTIONANDACTERIZINGINPHP, FORCUCTSESTEPS : 1. ALWAYSHASHPASSWORTHPASSWORD_HASH () ? VERVERIFYUSINGPANSWORD_VERIFY (), usePREPAREDSTATEMENTSTOPREVENTSQLINGERGED, andSTOREUSERSESSEATAIN $ _SESSIONSAFTERLOGIN.2.impleplempletrole ?? ACCESSC

PHP? ?? ?? (??)? ???? ?? ?? ? ? ????? PHP? ?? ?? (??)? ???? ?? ?? ? ? ????? Jun 14, 2025 am 12:25 AM

phpdoesnothaveAbuilt-inweakMapButofferSweakReference.1.WeakReenceAllowsholdingReferences withoutpreventinggarbageCollection.2.ItusteForCaching, Eventlisteners, andMetAdataWithoutAftingObjectLifeCycles.3.youcoucococococococcinccing

PHP? ?? ? ?? ?? ????? ????? ???? ?????? PHP? ?? ? ?? ?? ????? ????? ???? ?????? Jun 14, 2025 am 12:25 AM

ProceduralAndObject-OrientedProgramming (OOP) InphpDiffersiMINTIFINTIONTERINGLISTURE, ??? ? ? DATAHANDLING

PHP?? ?? ???? ??? ??? ?? ? ? ??????? PHP?? ?? ???? ??? ??? ?? ? ? ??????? Jun 19, 2025 am 01:05 AM

PHP?? ?? ???? ???? ????? ??? ?? ??? ???? ?? ??? ??? ??? ???? ????. 1. finfo_file ()? ???? ?? ?? ??? ???? ???/jpeg? ?? ?? ?? ? ?????. 2. uniqid ()? ???? ??? ?? ??? ???? ? Web ?? ????? ??????. 3. php.ini ? html ??? ?? ?? ??? ???? ???? ??? 0755? ?????. 4. Clamav? ???? ???? ???? ??? ??????. ??? ??? ?? ???? ????? ???? ?? ??? ????? ???? ??? ? ??? ?????.

PHP? NOSQL ?????? (? : MongoDB, Redis)? ??? ?? ??? ? ????? PHP? NOSQL ?????? (? : MongoDB, Redis)? ??? ?? ??? ? ????? Jun 19, 2025 am 01:07 AM

?, PHP? ?? ?? ?? ?????? ?? MongoDB ? Redis? ?? NOSQL ??????? ?? ??? ? ????. ?? MongoDBPHP ???? (PECL ?? Composer? ?? ??)? ???? ????? ????? ??? ?????? ? ???? ????? ??, ??, ?? ? ?? ??? ?????. ??, Predis ????? ?? Phpredis ??? ???? Redis? ???? ?? ? ?? ? ??? ???? ??? ????? Phpredis? ???? ?? Predis? ?? ??? ?????. ? ? ?? ??? ???? ? ????? ????.

PHP?? == (??? ??)? === (??? ??)? ???? ?????? PHP?? == (??? ??)? === (??? ??)? ???? ?????? Jun 19, 2025 am 01:07 AM

PHP?? ==? ==? ?? ???? ?? ??? ??????. == ?? ??? ?? ?? ?????. ?? ??, 5 == "5"? true? ????, ?? ??? ???? ?? ?? ??? ????? ????? (? : 5 === "5"? false? ?????. ?? ?????? ===? ? ???? ?? ?????? == ?? ??? ??? ???? ?????.

?? PHP ?? ? ?? ??? ??? ?? ??? ?????? ?? PHP ?? ? ?? ??? ??? ?? ??? ?????? Jun 23, 2025 am 12:56 AM

tostaycurrentwithphpdevelopments ? bestpractices, followkeynewssources lifephp.netandphpweekly, adgytwithcommunitiesonforumsandconferences, readlingupdated andgrad indewfeatures, andreadorcontributetoopensourceproceprosts.first

See all articles