Fixed some missing function imports

these weren't getting corrected since php-cs-fixer 3.0 due to a change in the default configuration for native_function_invocation. Since the builds are randomly choosing to use php-cs-fixer 2.19 at the moment, the consistency is a problem.
This commit is contained in:
Dylan K. Taylor
2021-08-19 15:40:43 +01:00
parent b4b3c21d30
commit a5b85e095a
2 changed files with 3 additions and 0 deletions

View File

@ -26,6 +26,7 @@ namespace pocketmine\console;
use function cli_set_process_title;
use function count;
use function dirname;
use function feof;
use function fwrite;
use function stream_socket_client;