PocketMine-MP 5.36.1 git-eaa7c4834c8fe2f379d24e7f0ee6cc63cfb18ccc
Loading...
Searching...
No Matches
DisassembledAvailableCommandsData.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\serializer;
16
22
27
47 public function __construct(
48 public readonly array $commandData,
49 public readonly array $unusedHardEnumValues,
50 public readonly array $unusedPostfixes,
51 public readonly array $unusedHardEnums,
52 public readonly array $unusedSoftEnums,
53 public readonly array $unusedChainedSubCommandData,
54 public readonly array $unusedChainedSubCommandValues,
55 public readonly array $repeatedEnumConstraints
56 ){}
57}
__construct(public readonly array $commandData, public readonly array $unusedHardEnumValues, public readonly array $unusedPostfixes, public readonly array $unusedHardEnums, public readonly array $unusedSoftEnums, public readonly array $unusedChainedSubCommandData, public readonly array $unusedChainedSubCommandValues, public readonly array $repeatedEnumConstraints)