Apply fixes from StyleCI

This commit is contained in:
Marcel Pociot
2021-05-31 12:48:18 +00:00
committed by StyleCI Bot
parent 5de11e90f7
commit ad2ef94958
6 changed files with 4 additions and 8 deletions

View File

@@ -32,7 +32,7 @@ class DatabaseStatisticsRepository implements StatisticsRepository
SUM(incoming_requests) as incoming_requests
FROM statistics
WHERE
`timestamp` >= "' . $from . '" AND `timestamp` <= "' . $until . '"')
`timestamp` >= "'.$from.'" AND `timestamp` <= "'.$until.'"')
->then(function (Result $result) use ($deferred) {
$deferred->resolve($result->rows);
});