Skip to content

Commit a883c66

Browse files
committed
Fix CS
1 parent 35b532a commit a883c66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/DependencyInjection/Configurator.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,12 @@ private function journal(string $currentContainerClassName): void
129129

130130
$week = 3600 * 24 * 7;
131131

132-
if ($containerLastUsedTime + $week >= $now) {
133-
$usedInTheLastWeek[] = $className;
134-
} else {
132+
if ($containerLastUsedTime + $week < $now) {
135133
continue;
136134
}
137135

136+
$usedInTheLastWeek[] = $className;
137+
138138
if ($currentContainerClassName !== $className) {
139139
$linesToWrite[] = sprintf('%s:%d', $className, $containerLastUsedTime);
140140
continue;

0 commit comments

Comments
 (0)