pocketmine\inventory\DoubleChestInventory::getContents PHP Метод

getContents() публичный Метод

public getContents ( )
    public function getContents()
    {
        $contents = [];
        for ($i = 0; $i < $this->getSize(); ++$i) {
            $contents[$i] = $this->getItem($i);
        }
        return $contents;
    }