PocketMine-MP/tests/phpstan/stubs/chunkutils.stub
Dylan K. Taylor 4bc2f28c6d Provide a ChunkUtils stub for PHPStan, so it doesn't get confused when the extension is loaded
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.
2020-02-02 18:12:41 +00:00

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){}
}