Skip to content
Snippets Groups Projects
Commit 5b2918e0 authored by Oliver Klee's avatar Oliver Klee Committed by Stefan Bürk
Browse files

[TASK] Harden array callbacks in EXT:adminpanel

Add type declarations to help static code analysis and to improve
code readability.

Resolves: #100328
Releases: main
Change-Id: Ic7ef004fea08e6e4210b271ecedd1f04372501ba
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/78280


Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
parent cf6d4185
Branches
Tags
No related merge requests found
......@@ -121,7 +121,7 @@ class QueryInformation extends AbstractSubModule implements DataProviderInterfac
}
uasort(
$groupedQueries,
static function ($a, $b) {
static function (array $a, array $b): int {
return $b['time'] <=> $a['time'];
}
);
......
......@@ -49,7 +49,7 @@ class DebugModule extends AbstractModule implements ShortInfoProviderInterface
public function getShortInfo(): string
{
$logRecords = GeneralUtility::makeInstance(InMemoryLogWriter::class)->getLogEntries();
$errorsAndWarnings = array_filter($logRecords, static function (LogRecord $entry) {
$errorsAndWarnings = array_filter($logRecords, static function (LogRecord $entry): bool {
return LogLevel::normalizeLevel($entry->getLevel()) <= 4;
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment