Fixed PHP-CS-Fixer not import global constants. (#5449)

This commit is contained in:
Rush2929
2022-12-13 02:12:33 +09:00
committed by GitHub
parent 74613b9b09
commit 31465525e3
13 changed files with 27 additions and 0 deletions

View File

@ -49,9 +49,13 @@ use function socket_strerror;
use function strlen;
use function time;
use function trim;
use const AF_INET;
use const MSG_DONTROUTE;
use const PHP_BINARY;
use const PHP_INT_MAX;
use const SOCK_DGRAM;
use const SOL_UDP;
use const STDIN;
require_once 'vendor/autoload.php';