diff options
author | Hamid Dehnavi <hamid.dev.pro@gmail.com> | 2023-07-16 15:57:15 +0330 |
---|---|---|
committer | Daniel <mail@danielkesselberg.de> | 2023-08-29 11:35:44 +0200 |
commit | e1b33e6cd073c187ef50e36fef389f41583b8f76 (patch) | |
tree | 9064cfac3034a99884d0a2fb5d53e63abd698f4a /apps/contactsinteraction | |
parent | e22742b9101af27666af86f296987323cca930a6 (diff) | |
download | nextcloud-server-e1b33e6cd073c187ef50e36fef389f41583b8f76.tar.gz nextcloud-server-e1b33e6cd073c187ef50e36fef389f41583b8f76.zip |
Make adjustments based on the psalm messages
Signed-off-by: Hamid Dehnavi <hamid.dev.pro@gmail.com>
Diffstat (limited to 'apps/contactsinteraction')
-rw-r--r-- | apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php b/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php index f23eaa6e1d3..0291f8ae6bc 100644 --- a/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php +++ b/apps/contactsinteraction/lib/BackgroundJob/CleanupJob.php @@ -43,7 +43,7 @@ class CleanupJob extends TimedJob { } - protected function run($argument): void { + protected function run(mixed $argument): void { $time = $this->time->getDateTime(); $time->modify('-7days'); $this->mapper->cleanUp($time->getTimestamp()); |