From 1ce09a8920c0086bb858a3ae9a9b4150713719d7 Mon Sep 17 00:00:00 2001 From: Anthony Clark Date: Mon, 28 Mar 2022 08:04:19 -0700 Subject: [PATCH] Enable the PhpdocTypesOrderFixer again (see #4395) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Description ----------- This can be enabled now that https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/6243 has been merged. Originally added [here](https://github.com/contao/contao/commit/4849881532595317a5c8ef7b99a9677b88f08ebf#diff-a95817c1c2b59c07bf78b5c0565bdf836c7459dee80a13573ae1689c04440040). I originally created PR https://github.com/contao/contao/pull/4392 but couldn't seem to switch the base branch. Commits ------- 66f400f0 Enable PhpdocTypesOrderFixer 05cc6c6c Update ecs Co-authored-by: Martin Auswöger --- src/Command/ContaoSetupCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/ContaoSetupCommand.php b/src/Command/ContaoSetupCommand.php index 5b73598..f8dcfed 100644 --- a/src/Command/ContaoSetupCommand.php +++ b/src/Command/ContaoSetupCommand.php @@ -67,7 +67,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int $php = [ $this->phpPath, - '-dmemory_limit='.ini_get('memory_limit'), + '-dmemory_limit='.\ini_get('memory_limit'), ]; if (OutputInterface::VERBOSITY_DEBUG === $output->getVerbosity()) {