PocketMine-MP 5.35.1 git-d241807752ab518f2ffc7e3b71f6a72f9cdf0c30
Loading...
Searching...
No Matches
MismatchTransactionData.php
1<?php
2
3/*
4 * This file is part of BedrockProtocol.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6 *
7 * BedrockProtocol is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13declare(strict_types=1);
14
15namespace pocketmine\network\mcpe\protocol\types\inventory;
16
17use pmmp\encoding\ByteBufferReader;
18use pmmp\encoding\ByteBufferWriter;
21use pocketmine\network\mcpe\protocol\types\GetTypeIdFromConstTrait;
22use function count;
23
25 use GetTypeIdFromConstTrait;
26
27 public const ID = InventoryTransactionPacket::TYPE_MISMATCH;
28
29 protected function decodeData(ByteBufferReader $in) : void{
30 if(count($this->actions) > 0){
31 throw new PacketDecodeException("Mismatch transaction type should not have any actions associated with it, but got " . count($this->actions));
32 }
33 }
34
35 protected function encodeData(ByteBufferWriter $out) : void{
36
37 }
38
39 public static function new() : self{
40 return new self; //no arguments
41 }
42}