From 4e6084bcf96230ca5823bf9dc3fbfb9dd066eab0 Mon Sep 17 00:00:00 2001 From: j3nsch Date: Wed, 30 Oct 2024 19:17:18 +0100 Subject: [PATCH] #49 Fix coding style --- src/PackageHandler.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/PackageHandler.php b/src/PackageHandler.php index 8feff23..4869ea9 100644 --- a/src/PackageHandler.php +++ b/src/PackageHandler.php @@ -35,8 +35,18 @@ use RecursiveDirectoryIterator; use RecursiveIteratorIterator; +use function file_put_contents; +use function is_readable; +use function md5; +use function mkdir; +use function rand; +use function rmdir; +use function time; +use function unlink; + +use const DIRECTORY_SEPARATOR; + /** - * * TODO separate differentiation of ZIP and TAR into separate classes - it should be possible to ADD another class to * support a new type of package - it should not be necessary to MODIFY existing classes for that */