Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * Copyright Magento, Inc. All rights reserved. * See COPYING.txt for license ..
Decoded Output download
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Console\Command;
use Magento\Framework\Console\Cli;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Command for checking cache status
*
* @api
* @since 100.0.2
*/
class CacheStatusCommand extends AbstractCacheCommand
{
/**
* @inheritdoc
*/
protected function configure()
{
$this->setName('cache:status');
$this->setDescription('Checks cache status');
parent::configure();
}
/**
* @inheritdoc
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln('Current status:');
foreach ($this->cacheManager->getStatus() as $cache => $status) {
$output->writeln(sprintf('%30s: %d', $cache, $status));
}
return Cli::RETURN_SUCCESS;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Console\Command;
use Magento\Framework\Console\Cli;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Command for checking cache status
*
* @api
* @since 100.0.2
*/
class CacheStatusCommand extends AbstractCacheCommand
{
/**
* @inheritdoc
*/
protected function configure()
{
$this->setName('cache:status');
$this->setDescription('Checks cache status');
parent::configure();
}
/**
* @inheritdoc
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$output->writeln('Current status:');
foreach ($this->cacheManager->getStatus() as $cache => $status) {
$output->writeln(sprintf('%30s: %d', $cache, $status));
}
return Cli::RETURN_SUCCESS;
}
}
Function Calls
None |
Stats
MD5 | 6e6495849b1f00f007d2facef759cf35 |
Eval Count | 0 |
Decode Time | 88 ms |