Skip to content

Commit

Permalink
Enable the PhpdocTypesOrderFixer again (see #4395)
Browse files Browse the repository at this point in the history
Description
-----------

This can be enabled now that PHP-CS-Fixer/PHP-CS-Fixer#6243 has been merged.

Originally added [here](contao/contao@4849881#diff-a95817c1c2b59c07bf78b5c0565bdf836c7459dee80a13573ae1689c04440040).

I originally created PR contao/contao#4392 but couldn't seem to switch the base branch.

Commits
-------

66f400f0 Enable PhpdocTypesOrderFixer
05cc6c6c Update ecs

Co-authored-by: Martin Auswöger <martin@auswoeger.com>
  • Loading branch information
driftingly and ausi committed Mar 28, 2022
1 parent 755eb6a commit f3aef05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Controller/InstallationController.php
Expand Up @@ -248,7 +248,7 @@ private function purgeSymfonyCache(): void
opcache_reset();
}

if (\function_exists('apc_clear_cache') && !ini_get('apc.stat')) {
if (\function_exists('apc_clear_cache') && !\ini_get('apc.stat')) {
apc_clear_cache();
}
}
Expand Down Expand Up @@ -277,7 +277,7 @@ private function warmUpSymfonyCache(): void
opcache_reset();
}

if (\function_exists('apc_clear_cache') && !ini_get('apc.stat')) {
if (\function_exists('apc_clear_cache') && !\ini_get('apc.stat')) {
apc_clear_cache();
}
}
Expand Down

0 comments on commit f3aef05

Please sign in to comment.