aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_versions/lib/Storage.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_versions/lib/Storage.php')
-rw-r--r--apps/files_versions/lib/Storage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_versions/lib/Storage.php b/apps/files_versions/lib/Storage.php
index b1d6c689c61..1c4e424ec78 100644
--- a/apps/files_versions/lib/Storage.php
+++ b/apps/files_versions/lib/Storage.php
@@ -497,7 +497,7 @@ class Storage {
* Expire versions that older than max version retention time
* @param string $uid
*/
- public static function expireOlderThanMaxForUser($uid){
+ public static function expireOlderThanMaxForUser($uid) {
$expiration = self::getExpiration();
$threshold = $expiration->getMaxAgeAsTimestamp();
$versions = self::getAllVersions($uid);
@@ -848,7 +848,7 @@ class Storage {
* Static workaround
* @return Expiration
*/
- protected static function getExpiration(){
+ protected static function getExpiration() {
if (self::$application === null) {
self::$application = \OC::$server->query(Application::class);
}