Skip to content

Commit 9e7117c

Browse files
authored
[ci] php-cs-fixer it up (#232)
1 parent 003846e commit 9e7117c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/UnitTests/Model/ResetPasswordRequestTraitTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public function testORMAnnotationSetOnProperty(string $propertyName, string $exp
4545

4646
public function isExpiredDataProvider(): \Generator
4747
{
48-
yield 'Is expired' => [(time() + (360)), false];
49-
yield 'Is Not Expired' => [(time() - (360)), true];
48+
yield 'Is expired' => [time() + 360, false];
49+
yield 'Is Not Expired' => [time() - 360, true];
5050
}
5151

5252
/**

0 commit comments

Comments
 (0)