Skip to content
Snippets Groups Projects
Commit 4e0ee131 authored by Oliver Hader's avatar Oliver Hader Committed by Oliver Hader
Browse files

[BUGFIX] Avoid static calls to LogDataTrait::formatLogDetails

Resolves: #103097
Releases: 12.4, 11.5
Change-Id: I9280a8489cd0b301a1d9c66efc8428bad206cb8c
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/82890


Reviewed-by: default avatarOliver Hader <oliver.hader@typo3.org>
Tested-by: default avatarBenjamin Franzke <ben@bnf.dev>
Tested-by: default avatarOliver Hader <oliver.hader@typo3.org>
Tested-by: default avatarcore-ci <typo3@b13.com>
Reviewed-by: default avatarBenjamin Franzke <ben@bnf.dev>
parent 9d64aed5
Branches
Tags
No related merge requests found
...@@ -187,8 +187,8 @@ abstract class AbstractDataHandlerActionTestCase extends FunctionalTestCase ...@@ -187,8 +187,8 @@ abstract class AbstractDataHandlerActionTestCase extends FunctionalTestCase
->fetchOne(); ->fetchOne();
$entryMessages = array_map( $entryMessages = array_map(
static function (array $entry) { function (array $entry) {
return self::formatLogDetails($entry['details'] ?? '', $entry['log_data'] ?? ''); return $this->formatLogDetails($entry['details'] ?? '', $entry['log_data'] ?? '');
}, },
$statement->fetchAllAssociative() $statement->fetchAllAssociative()
); );
......
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