mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-11 00:09:39 +00:00
for some reason the presence of the type problems were reported as problems on ChunkUtils.php, despite being outside of the project scope and the errors not applying to the polyfill.
27 lines
434 B
Plaintext
27 lines
434 B
Plaintext
<?php
|
|
|
|
namespace pocketmine\level\format\io;
|
|
|
|
class ChunkUtils{
|
|
/**
|
|
* @param string $byte_array
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function reorderByteArray($byte_array){}
|
|
|
|
/**
|
|
* @param string $nibble_array
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function reorderNibbleArray($nibble_array){}
|
|
|
|
/**
|
|
* @param int[] $color_array
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function convertBiomeColors($color_array){}
|
|
}
|