![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-inventory-reservations/Model/ |
<?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; } }