bavix/laravel-wallet

View on GitHub
src/Internal/Dto/ItemDto.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Bavix\Wallet\Internal\Dto;

use Bavix\Wallet\Interfaces\ProductInterface;
use Bavix\Wallet\Interfaces\Wallet;

/** @immutable */
final readonly class ItemDto implements ItemDtoInterface
{
    public function __construct(
        private ProductInterface $product,
        private int $quantity,
        private int|string|null $pricePerItem,
        private ?Wallet $receiving,
    ) {
    }

    /**
     * @return ProductInterface[]
     */
    public function getItems(): array
    {
        return array_fill(0, $this->quantity, $this->product);
    }

    public function getPricePerItem(): int|string|null
    {
        return $this->pricePerItem;
    }

    public function getProduct(): ProductInterface
    {
        return $this->product;
    }

    public function count(): int
    {
        return $this->quantity;
    }

    public function getReceiving(): ?Wallet
    {
        return $this->receiving;
    }
}