![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-developer/Console/Command/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Console\Command; use InvalidArgumentException; use Magento\Framework\Console\Cli; use Magento\Framework\Filesystem\Io\File; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class ProfilerDisableCommand extends Command { /** * Profiler flag file path */ public const PROFILER_FLAG_FILE = 'var/profiler.flag'; public const COMMAND_NAME = 'dev:profiler:disable'; public const SUCCESS_MESSAGE = 'Profiler disabled.'; /** * @var File */ private $filesystem; /** * Initialize dependencies. * * @param File $filesystem * @internal param ConfigInterface $resourceConfig */ public function __construct(File $filesystem) { parent::__construct(); $this->filesystem = $filesystem; } /** * @inheritdoc */ protected function configure() { $this->setName(self::COMMAND_NAME) ->setDescription('Disable the profiler.'); parent::configure(); } /** * @inheritdoc * * @throws InvalidArgumentException */ protected function execute(InputInterface $input, OutputInterface $output) { $this->filesystem->rm(BP . '/' . self::PROFILER_FLAG_FILE); if (!$this->filesystem->fileExists(BP . '/' . self::PROFILER_FLAG_FILE)) { $output->writeln('<info>'. self::SUCCESS_MESSAGE . '</info>'); return Cli::RETURN_SUCCESS; } $output->writeln('<error>Something went wrong while disabling the profiler.</error>'); return Cli::RETURN_FAILURE; } }