PocketMine-MP 5.21.2 git-b2aa6396c3cc2cafdd815eacc360e1ad89599899
|
Public Member Functions | |
getKnownAliases () | |
lookupAliases (Item $item) | |
lookupBlockAliases (Block $block) | |
override (string $alias, \Closure $callback) | |
parse (string $input) | |
register (string $alias, \Closure $callback) | |
registerAlias (string $existing, string $alias) | |
registerBlock (string $alias, \Closure $callback) | |
Protected Member Functions | |
reprocess (string $input) | |
Handles parsing items from strings. This is used to interpret names from the /give command (and others).
@phpstan-extends StringToTParser<Item>
Definition at line 48 of file StringToItemParser.php.
|
inherited |
Definition at line 94 of file StringToTParser.php.
pocketmine\item\StringToItemParser::lookupAliases | ( | Item | $item | ) |
Returns a list of currently registered aliases that resolve to the given item.
Definition at line 1560 of file StringToItemParser.php.
pocketmine\item\StringToItemParser::lookupBlockAliases | ( | Block | $block | ) |
Returns a list of currently registered aliases that resolve to the item form of the given block.
Definition at line 1571 of file StringToItemParser.php.
|
inherited |
@phpstan-param \Closure(string $input) : T $callback
Definition at line 57 of file StringToTParser.php.
pocketmine\item\StringToItemParser::parse | ( | string | $input | ) |
Tries to parse the specified string into a corresponding instance of T. @phpstan-return T|null
Reimplemented from pocketmine\utils\StringToTParser.
Definition at line 1550 of file StringToItemParser.php.
pocketmine\item\StringToItemParser::register | ( | string | $alias, |
\Closure | $callback ) |
@phpstan-param \Closure(string $input) : T $callback
Reimplemented from pocketmine\utils\StringToTParser.
Definition at line 1539 of file StringToItemParser.php.
|
inherited |
Registers a new alias for an existing known alias.
Definition at line 64 of file StringToTParser.php.
pocketmine\item\StringToItemParser::registerBlock | ( | string | $alias, |
\Closure | $callback ) |
@phpstan-param \Closure(string $input) : Block $callback
Definition at line 1546 of file StringToItemParser.php.
|
protectedinherited |
Definition at line 89 of file StringToTParser.php.