inklabs/kommerce-core

View on GitHub
src/EntityDTO/Builder/InventoryLocationDTOBuilder.php

Summary

Maintainability
B
5 hrs
Test Coverage
<?php
namespace inklabs\kommerce\EntityDTO\Builder;

use inklabs\kommerce\Entity\InventoryLocation;
use inklabs\kommerce\EntityDTO\InventoryLocationDTO;

class InventoryLocationDTOBuilder implements DTOBuilderInterface
{
    use IdDTOBuilderTrait, TimeDTOBuilderTrait;

    /** @var InventoryLocation */
    protected $entity;

    /** @var InventoryLocationDTO */
    protected $entityDTO;

    /** @var DTOBuilderFactoryInterface */
    protected $dtoBuilderFactory;

    public function __construct(InventoryLocation $inventoryTransaction, DTOBuilderFactoryInterface $dtoBuilderFactory)
    {
        $this->entity = $inventoryTransaction;
        $this->dtoBuilderFactory = $dtoBuilderFactory;

        $this->entityDTO = new InventoryLocationDTO;
        $this->setId();
        $this->setTime();
        $this->entityDTO->name = $this->entity->getName();
        $this->entityDTO->code = $this->entity->getCode();
    }

    /**
     * @return static
     */
    public function withWarehouse()
    {
        $this->entityDTO->warehouse = $this->dtoBuilderFactory
            ->getWarehouseDTOBuilder($this->entity->getWarehouse())
            ->build();

        return $this;
    }

    /**
     * @return static
     */
    public function withAllData()
    {
        return $this
            ->withWarehouse();
    }

    protected function preBuild()
    {
    }

    public function build()
    {
        $this->preBuild();
        unset($this->entity);
        return $this->entityDTO;
    }
}