123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- declare(strict_types=1);
- namespace Magento\InventoryReservations\Model;
- use Magento\InventoryReservationsApi\Model\ReservationInterface;
- /**
- * {@inheritdoc}
- *
- * @codeCoverageIgnore
- */
- class Reservation implements ReservationInterface
- {
- /**
- * @var int|null
- */
- private $reservationId;
- /**
- * @var int
- */
- private $stockId;
- /**
- * @var string
- */
- private $sku;
- /**
- * @var float
- */
- private $quantity;
- /**
- * @var string|null
- */
- private $metadata;
- /**
- * @param int|null $reservationId
- * @param int $stockId
- * @param string $sku
- * @param float $quantity
- * @param null $metadata
- */
- public function __construct(
- $reservationId,
- int $stockId,
- string $sku,
- float $quantity,
- $metadata = null
- ) {
- $this->reservationId = $reservationId;
- $this->stockId = $stockId;
- $this->sku = $sku;
- $this->quantity = $quantity;
- $this->metadata = $metadata;
- }
- /**
- * @inheritdoc
- */
- public function getReservationId(): ?int
- {
- return $this->reservationId === null ?
- null:
- (int)$this->reservationId;
- }
- /**
- * @inheritdoc
- */
- public function getStockId(): int
- {
- return $this->stockId;
- }
- /**
- * @inheritdoc
- */
- public function getSku(): string
- {
- return $this->sku;
- }
- /**
- * @inheritdoc
- */
- public function getQuantity(): float
- {
- return $this->quantity;
- }
- /**
- * @inheritdoc
- */
- public function getMetadata(): ?string
- {
- return $this->metadata;
- }
- }
|