diff options
Diffstat (limited to 'apps/files_trashbin/lib/Command/Expire.php')
-rw-r--r-- | apps/files_trashbin/lib/Command/Expire.php | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/apps/files_trashbin/lib/Command/Expire.php b/apps/files_trashbin/lib/Command/Expire.php index b31e540ee38..f526438600e 100644 --- a/apps/files_trashbin/lib/Command/Expire.php +++ b/apps/files_trashbin/lib/Command/Expire.php @@ -14,15 +14,11 @@ class Expire implements ICommand { use FileAccess; /** - * @var string - */ - private $user; - - /** * @param string $user */ - public function __construct($user) { - $this->user = $user; + public function __construct( + private $user, + ) { } public function handle() { |