added missing function imports

This commit is contained in:
Dylan K. Taylor 2019-12-09 20:13:02 +00:00
parent 50a4c42f3f
commit f00c69c513
4 changed files with 7 additions and 0 deletions

View File

@ -37,6 +37,7 @@ use function openssl_verify;
use function ord;
use function str_split;
use function strlen;
use function strtr;
use function time;
use function wordwrap;
use const OPENSSL_ALGO_SHA384;

View File

@ -31,6 +31,7 @@ use pocketmine\network\mcpe\protocol\types\CommandEnum;
use pocketmine\network\mcpe\protocol\types\CommandEnumConstraint;
use pocketmine\network\mcpe\protocol\types\CommandParameter;
use pocketmine\utils\BinaryDataException;
use function array_search;
use function count;
use function dechex;

View File

@ -27,6 +27,10 @@ use pocketmine\entity\Skin;
use function is_array;
use function is_string;
use function json_decode;
use function json_encode;
use function random_bytes;
use function str_repeat;
class LegacySkinAdapter implements SkinAdapter{

View File

@ -22,6 +22,7 @@
declare(strict_types=1);
namespace pocketmine\network\mcpe\protocol\types;
use function strlen;
class SkinImage{