![]() 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/src/ |
<?php /** * Box packing (3D bin packing, knapsack problem). * * @author Doug Wright */ declare(strict_types=1); namespace DVDoug\BoxPacker; use JsonSerializable; use ReturnTypeWillChange; /** * @internal */ class WorkingVolume implements Box, JsonSerializable { private int $width; private int $length; private int $depth; private int $maxWeight; public function __construct( int $width, int $length, int $depth, int $maxWeight ) { $this->width = $width; $this->length = $length; $this->depth = $depth; $this->maxWeight = $maxWeight; } public function getReference(): string { return "Working Volume {$this->width}x{$this->length}x{$this->depth}"; } public function getOuterWidth(): int { return $this->width; } public function getOuterLength(): int { return $this->length; } public function getOuterDepth(): int { return $this->depth; } public function getEmptyWeight(): int { return 0; } public function getInnerWidth(): int { return $this->width; } public function getInnerLength(): int { return $this->length; } public function getInnerDepth(): int { return $this->depth; } public function getMaxWeight(): int { return $this->maxWeight; } #[ReturnTypeWillChange] public function jsonSerialize()/* : mixed */ { return [ 'reference' => $this->getReference(), 'width' => $this->width, 'length' => $this->length, 'depth' => $this->depth, 'maxWeight' => $this->maxWeight, ]; } }