Skip to content

Commit 877b1cb

Browse files
committed
cleanup 1
1 parent 3b81117 commit 877b1cb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/FileCacheCleaner.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use function array_reverse;
1818
use function file_get_contents;
1919
use function getopt;
20-
use function get_class;
2120
use function gmdate;
2221
use function is_dir;
2322
use function preg_match;
@@ -284,7 +283,8 @@ private function removeDirectory($directory)
284283

285284
private function showReport()
286285
{
287-
$this->verbose("---------- Cache ----------\n"
286+
$this->verbose(
287+
"---------- Cache ----------\n"
288288
. $this->getReport('cache_files') . " cache files, "
289289
. $this->getReport('cache_files_size') . " bytes\n"
290290
. $this->getReport('unexpired_cache_files') . " unexpired cache files, "
@@ -338,7 +338,8 @@ private function getReport($key)
338338
* @param string $key
339339
* @return string
340340
*/
341-
private function getReportDate($key) {
341+
private function getReportDate($key)
342+
{
342343
if (empty($this->report[$key])) {
343344
return ' - ';
344345
}

0 commit comments

Comments
 (0)