Skip to content

Commit ac2e7ef

Browse files
committed
feat: linter fixes
1 parent c97e7ce commit ac2e7ef

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Appwrite/Platform/Tasks/Hamster.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private function getStats(Database $dbForConsole, Database $dbForProject, Docume
140140
}
141141
});
142142

143-
return $stats;
143+
return $stats;
144144
}
145145

146146
public function action(Registry $register, Group $pools, Cache $cache, Database $dbForConsole): void
@@ -174,7 +174,7 @@ public function action(Registry $register, Group $pools, Cache $cache, Database
174174
if ($project->getId() === 'console') {
175175
continue;
176176
}
177-
177+
178178
Console::info("Getting stats for {$project->getId()}");
179179

180180
try {
@@ -190,7 +190,6 @@ public function action(Registry $register, Group $pools, Cache $cache, Database
190190

191191
$statsPerProject = $this->getStats($dbForConsole, $dbForProject, $project);
192192
$csv->insertOne(array_values($statsPerProject));
193-
194193
} catch (\Throwable $th) {
195194
throw $th;
196195
Console::error('Failed to update project ("' . $project->getId() . '") version with error: ' . $th->getMessage());

0 commit comments

Comments
 (0)