@@ -300,7 +300,7 @@ public function recursiveCommand(string $Command, callable $Callable): string
300
300
private function peMeta (string $ File ): string
301
301
{
302
302
return $ this ->recursiveCommand ($ File , function ($ Params ) {
303
- $ Data = $ this ->Loader ->readFileContent ($ Params );
303
+ $ Data = $ this ->Loader ->readFile ($ Params );
304
304
$ Returnable = '' ;
305
305
if (substr ($ Data , 0 , 2 ) !== 'MZ ' ) {
306
306
return $ this ->Loader ->L10N ->getString ('cli_pe1 ' ) . "\n" ;
@@ -397,7 +397,7 @@ private function coexFile(string $Clean): string
397
397
if (filter_var ($ Params , FILTER_VALIDATE_URL )) {
398
398
$ Data = $ this ->Loader ->Request ->request ($ Params );
399
399
} elseif (is_file ($ Params ) && is_readable ($ Params )) {
400
- $ Data = $ this ->Loader ->readFileContent ($ Params );
400
+ $ Data = $ this ->Loader ->readFile ($ Params );
401
401
}
402
402
if (empty ($ Data )) {
403
403
return $ this ->Loader ->L10N ->getString ('response.Invalid data ' ) . "\n" ;
@@ -424,7 +424,7 @@ private function hashFile(string $Clean): string
424
424
if (filter_var ($ Params , FILTER_VALIDATE_URL )) {
425
425
$ Data = $ this ->Loader ->Request ->request ($ Params );
426
426
} elseif (is_file ($ Params ) && is_readable ($ Params )) {
427
- $ Data = $ this ->Loader ->readFileContent ($ Params );
427
+ $ Data = $ this ->Loader ->readFile ($ Params );
428
428
}
429
429
if (empty ($ Data )) {
430
430
return $ this ->Loader ->L10N ->getString ('response.Invalid data ' ) . "\n" ;
0 commit comments