Skip to content

Commit 674381e

Browse files
committed
fix: php cs fix run
Signed-off-by: yemkareems <[email protected]>
1 parent bbbbc4d commit 674381e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apps/files_versions/tests/GetAutoExpireListTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class GetAutoExpireListTest extends TestCase {
1919
/**
2020
* Helper to call the private retention logic
2121
*
22-
* @param int $now
22+
* @param int $now
2323
* @param array $versions
2424
* @return array{array<int,array>, int}
2525
*/
@@ -37,7 +37,7 @@ private static function callGetAutoExpireList(int $now, array $versions): array
3737
public function testBucketKeepsLatest(int $age1, int $age2, int $size1, int $size2): void {
3838
$now = time();
3939

40-
$first = $now - $age1;
40+
$first = $now - $age1;
4141
$second = $now - $age2;
4242

4343
// Ensure first is newer than second
@@ -47,7 +47,7 @@ public function testBucketKeepsLatest(int $age1, int $age2, int $size1, int $siz
4747
}
4848

4949
$versions = [
50-
$first => ['version' => $first, 'size' => $size1, 'path' => 'f'],
50+
$first => ['version' => $first, 'size' => $size1, 'path' => 'f'],
5151
$second => ['version' => $second, 'size' => $size2, 'path' => 'f'],
5252
];
5353

@@ -114,7 +114,7 @@ public static function provideBucketKeepsLatest(): array {
114114
public function testRetentionOverTimeEveryTenMinutes(
115115
int $days,
116116
int $expectedMin,
117-
int $expectedMax
117+
int $expectedMax,
118118
): void {
119119
$now = time();
120120
$versions = [];
@@ -179,7 +179,7 @@ public static function provideVersionRetentionRanges(): array {
179179
*/
180180
public function testExactRetentionCounts(
181181
int $days,
182-
int $expectedRetained
182+
int $expectedRetained,
183183
): void {
184184
$now = self::NOW;
185185
$versions = [];

0 commit comments

Comments
 (0)