![]() 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/dvdoug/boxpacker/tests/Test/ |
<?php /** * Box packing (3D bin packing, knapsack problem). * * @author Doug Wright */ declare(strict_types=1); namespace DVDoug\BoxPacker\Test; use DVDoug\BoxPacker\Box; use JsonSerializable; use ReturnTypeWillChange; class TestBox implements Box, JsonSerializable { /** * @var string */ private $reference; /** * @var int */ private $outerWidth; /** * @var int */ private $outerLength; /** * @var int */ private $outerDepth; /** * @var int */ private $emptyWeight; /** * @var int */ private $innerWidth; /** * @var int */ private $innerLength; /** * @var int */ private $innerDepth; /** * @var int */ private $maxWeight; /** * TestBox constructor. */ public function __construct( string $reference, int $outerWidth, int $outerLength, int $outerDepth, int $emptyWeight, int $innerWidth, int $innerLength, int $innerDepth, int $maxWeight ) { $this->reference = $reference; $this->outerWidth = $outerWidth; $this->outerLength = $outerLength; $this->outerDepth = $outerDepth; $this->emptyWeight = $emptyWeight; $this->innerWidth = $innerWidth; $this->innerLength = $innerLength; $this->innerDepth = $innerDepth; $this->maxWeight = $maxWeight; } public function getReference(): string { return $this->reference; } public function getOuterWidth(): int { return $this->outerWidth; } public function getOuterLength(): int { return $this->outerLength; } public function getOuterDepth(): int { return $this->outerDepth; } public function getEmptyWeight(): int { return $this->emptyWeight; } public function getInnerWidth(): int { return $this->innerWidth; } public function getInnerLength(): int { return $this->innerLength; } public function getInnerDepth(): int { return $this->innerDepth; } public function getMaxWeight(): int { return $this->maxWeight; } #[ReturnTypeWillChange] public function jsonSerialize()/* : mixed */ { return [ 'reference' => $this->reference, 'innerWidth' => $this->innerWidth, 'innerLength' => $this->innerLength, 'innerDepth' => $this->innerDepth, 'emptyWeight' => $this->emptyWeight, 'maxWeight' => $this->maxWeight, ]; } }