Strict repair step

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2018-12-07 13:40:43 +01:00
parent e22645136c
commit a478945767
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
/**
* @copyright Copyright 2018, Roeland Jago Douma <roeland@famdouma.nl>
*
@ -50,7 +51,7 @@ class SetTokenExpiration implements IRepairStep {
$this->tokenProvider = $tokenProvider;
}
public function getName() {
public function getName(): string {
return 'Update OAuth token expiration times';
}