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.
*/
declare(strict_types=1);
namespace Magento\ApplicationPerformanceMonitor\Profiler\Input;
use Magento\ApplicationPerformanceMonitor\Profiler\InputInterface;
use Magento\Framework\AppInterface;
/**
* Adds applicationClass based on the current application
*/
class GeneralInput implements InputInterface
{
/**
* @inheritDoc
*/
public function doInput(AppInterface $application) : array
{
return ['applicationClass'=> get_class($application)];
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\ApplicationPerformanceMonitor\Profiler\Input;
use Magento\ApplicationPerformanceMonitor\Profiler\InputInterface;
use Magento\Framework\AppInterface;
/**
* Adds applicationClass based on the current application
*/
class GeneralInput implements InputInterface
{
/**
* @inheritDoc
*/
public function doInput(AppInterface $application) : array
{
return ['applicationClass'=> get_class($application)];
}
}
Function Calls
None |
Stats
MD5 | 8c4186bd709c5a003f7f29670f1dc383 |
Eval Count | 0 |
Decode Time | 107 ms |