Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
- name: Phpstan 13
if: matrix.TYPO3 == '13'
run: .Build/bin/phpstan analyze -c Build/phpstan13.neon
- name: Phpcsfix
- name: Phpcsfix TYPO3 12 and 13
if: matrix.TYPO3 != '11'
run: .Build/bin/php-cs-fixer fix --config=Build/php-cs-fixer.php --dry-run --stop-on-violation --using-cache=no

2 changes: 1 addition & 1 deletion Classes/Listener/ModifyClearCacheActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __invoke(ModifyClearCacheActionsEvent $event): void
'id' => 'clearProxyCache',
'title' => 'LLL:EXT:proxycachemanager/Resources/Private/Language/locallang.xlf:menuitem.title',
'description' => 'LLL:EXT:proxycachemanager/Resources/Private/Language/locallang.xlf:menuitem.description',
'href' => $uriBuilder->buildUriFromRoute('ajax_proxy_flushcaches'),
'href' => (string)$uriBuilder->buildUriFromRoute('ajax_proxy_flushcaches'),
'iconIdentifier' => 'actions-system-cache-clear-impact-medium',
];
$event->addCacheAction($item);
Expand Down