formatting pass

This commit is contained in:
Matthew Barbour 2020-06-02 17:47:53 -05:00 committed by Shish
parent 2bb5f349f9
commit bccb206369
4 changed files with 9 additions and 11 deletions

View File

@ -259,7 +259,6 @@ class BasePage
public function flush_output(): void public function flush_output(): void
{ {
} }
/** /**

View File

@ -426,7 +426,6 @@ function remove_empty_dirs(string $dir): bool
function get_files_recursively(string $dir): array function get_files_recursively(string $dir): array
{ {
assert(!empty($dir)); assert(!empty($dir));
if (!is_dir($dir)) { if (!is_dir($dir)) {

View File

@ -8,5 +8,5 @@ class TrashInfo extends ExtensionInfo
public $name = "Trash"; public $name = "Trash";
public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"]; public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
public $license = self::LICENSE_WTFPL; public $license = self::LICENSE_WTFPL;
public $description = "Provides \"Trash\" or \"Recycle Bin\"-type functionality, storing delete images for later recovery"; public $description = "Provides \"Trash\" or \"Recycle Bin\"-type functionality, storing deleted images for later recovery";
} }