Skip to content

Commit

Permalink
[BUGFIX] Fix TYPO3 coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
dkd-kaehm committed May 14, 2024
1 parent b729aa0 commit dbd8262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/Integration/Service/Tika/ServerServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function startServerStoresPidInRegistry(): void
->expects(self::atLeastOnce())
->method('set')
->with('tx_tika', 'server.pid', 1000)
->willReturnCallback(function ($namespace, $key, $value) {
->willReturnCallback(function($namespace, $key, $value) {
self::assertIsInt($value);
self::assertEquals(1000, $value);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function canShowInformationFromStandaloneTikaServer(): void
$this->controller->setTikaConfiguration($tikaConfiguration);
$matcher = self::any();

$this->viewMock->expects($matcher)->method('assign')->willReturnCallback(function () use ($matcher, $tikaConfiguration) {
$this->viewMock->expects($matcher)->method('assign')->willReturnCallback(function() use ($matcher, $tikaConfiguration) {
return match ($matcher->numberOfInvocations()) {
1 => [ 'configuration', $tikaConfiguration ],
2 => [ 'extractor', ucfirst($tikaConfiguration['extractor']) ],
Expand Down

0 comments on commit dbd8262

Please sign in to comment.