mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-07 18:32:55 +00:00
Merge branch '3.5'
This commit is contained in:
@ -23,6 +23,37 @@ declare(strict_types=1);
|
||||
|
||||
namespace pocketmine\utils;
|
||||
|
||||
use function array_change_key_case;
|
||||
use function array_keys;
|
||||
use function array_pop;
|
||||
use function array_shift;
|
||||
use function basename;
|
||||
use function count;
|
||||
use function date;
|
||||
use function explode;
|
||||
use function file_exists;
|
||||
use function file_get_contents;
|
||||
use function file_put_contents;
|
||||
use function implode;
|
||||
use function is_array;
|
||||
use function is_bool;
|
||||
use function json_decode;
|
||||
use function json_encode;
|
||||
use function preg_match_all;
|
||||
use function preg_replace;
|
||||
use function serialize;
|
||||
use function str_replace;
|
||||
use function strlen;
|
||||
use function strtolower;
|
||||
use function substr;
|
||||
use function trim;
|
||||
use function unserialize;
|
||||
use function yaml_emit;
|
||||
use function yaml_parse;
|
||||
use const CASE_LOWER;
|
||||
use const JSON_BIGINT_AS_STRING;
|
||||
use const JSON_PRETTY_PRINT;
|
||||
|
||||
/**
|
||||
* Config Class for simple config manipulation of multiple formats.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user