Skip to content

Commit

Permalink
#49 Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
j3nsch committed Oct 30, 2024
1 parent 711fafa commit 4e6084b
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/PackageHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 4e6084b

Please sign in to comment.