Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJ0WI <J0WI@users.noreply.github.com>2021-04-26 13:44:37 +0300
committerJ0WI <J0WI@users.noreply.github.com>2021-04-26 13:44:37 +0300
commitd1f23b0428c04f8710987bb30183d8c7cc6d3261 (patch)
tree95835a32feb54c985c33240d929ef84ef85dedcb /core/BackgroundJobs/CleanupLoginFlowV2.php
parenta3699330846f8ecb18ab3593884d011b032ae485 (diff)
core: add more strict_types
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'core/BackgroundJobs/CleanupLoginFlowV2.php')
-rw-r--r--core/BackgroundJobs/CleanupLoginFlowV2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/BackgroundJobs/CleanupLoginFlowV2.php b/core/BackgroundJobs/CleanupLoginFlowV2.php
index 9fee3550c8e..69e7fe71959 100644
--- a/core/BackgroundJobs/CleanupLoginFlowV2.php
+++ b/core/BackgroundJobs/CleanupLoginFlowV2.php
@@ -42,7 +42,7 @@ class CleanupLoginFlowV2 extends TimedJob {
$this->setInterval(3600);
}
- protected function run($argument) {
+ protected function run($argument): void {
$this->loginFlowV2Mapper->cleanup();
}
}