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:
authorCarl Schwan <carl@carlschwan.eu>2022-04-12 18:55:01 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-05-20 23:18:06 +0300
commitb70c6a128fe5d0053b7971881696eafce4cb7c26 (patch)
tree641ff76531803c207a92d86f47d46b6dd93ab6d3 /core/BackgroundJobs/CleanupLoginFlowV2.php
parent2b0d82675f669f00ad90f2750b1832a60ec9f766 (diff)
Update core to PHP 7.4 standardcore-cleanup-74
- Typed properties - Port to LoggerInterface Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'core/BackgroundJobs/CleanupLoginFlowV2.php')
-rw-r--r--core/BackgroundJobs/CleanupLoginFlowV2.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/BackgroundJobs/CleanupLoginFlowV2.php b/core/BackgroundJobs/CleanupLoginFlowV2.php
index 919fbd7e653..27a5160a9d7 100644
--- a/core/BackgroundJobs/CleanupLoginFlowV2.php
+++ b/core/BackgroundJobs/CleanupLoginFlowV2.php
@@ -31,9 +31,7 @@ use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\TimedJob;
class CleanupLoginFlowV2 extends TimedJob {
-
- /** @var LoginFlowV2Mapper */
- private $loginFlowV2Mapper;
+ private LoginFlowV2Mapper $loginFlowV2Mapper;
public function __construct(ITimeFactory $time, LoginFlowV2Mapper $loginFlowV2Mapper) {
parent::__construct($time);