From b2ab2a295cdfa64c6757c0dd043f7381374c9602 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 17 Aug 2020 09:16:16 +0200 Subject: [PATCH] Fix CS --- Command/AboutCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/AboutCommand.php b/Command/AboutCommand.php index e40114abe..118d0aed2 100644 --- a/Command/AboutCommand.php +++ b/Command/AboutCommand.php @@ -81,7 +81,7 @@ protected function execute(InputInterface $input, OutputInterface $output) ['PHP'], new TableSeparator(), ['Version', PHP_VERSION], - ['Architecture', (PHP_INT_SIZE * 8).' bits'], + ['Architecture', (\PHP_INT_SIZE * 8).' bits'], ['Intl locale', class_exists('Locale', false) && \Locale::getDefault() ? \Locale::getDefault() : 'n/a'], ['Timezone', date_default_timezone_get().' ('.(new \DateTime())->format(\DateTime::W3C).')'], ['OPcache', \extension_loaded('Zend OPcache') && filter_var(ini_get('opcache.enable'), FILTER_VALIDATE_BOOLEAN) ? 'true' : 'false'],