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

@ -39,6 +39,7 @@ use function sprintf;
use function str_replace;
use function substr;
use const SORT_STRING;
use const STDERR;
if(count($argv) !== 2){
fwrite(STDERR, "Provide a path to process\n");

View File

@ -40,6 +40,7 @@ use function rtrim;
use function sprintf;
use function str_replace;
use function unlink;
use const DIRECTORY_SEPARATOR;
use const PHP_EOL;
require dirname(__DIR__) . '/vendor/autoload.php';