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\Analytics\Model\Config;
use Magento\Framework\Config\ReaderInterface;
/**
* Composite reader for config.
*/
class Reader implements ReaderInterface
{
/**
* @var ReaderInterface[]
*/
private $readers;
/**
* @var Mapper
*/
private $mapper;
/**
* @param Mapper $mapper
* @param ReaderInterface[] $readers
*/
public function __construct(
Mapper $mapper,
$readers = []
) {
$this->mapper = $mapper;
$this->readers = $readers;
}
/**
* Read configuration scope.
*
* @param string|null $scope
* @return array
*/
public function read($scope = null)
{
$data = [];
foreach ($this->readers as $reader) {
$data = array_merge_recursive($data, $reader->read($scope));
}
return $this->mapper->execute($data);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Analytics\Model\Config;
use Magento\Framework\Config\ReaderInterface;
/**
* Composite reader for config.
*/
class Reader implements ReaderInterface
{
/**
* @var ReaderInterface[]
*/
private $readers;
/**
* @var Mapper
*/
private $mapper;
/**
* @param Mapper $mapper
* @param ReaderInterface[] $readers
*/
public function __construct(
Mapper $mapper,
$readers = []
) {
$this->mapper = $mapper;
$this->readers = $readers;
}
/**
* Read configuration scope.
*
* @param string|null $scope
* @return array
*/
public function read($scope = null)
{
$data = [];
foreach ($this->readers as $reader) {
$data = array_merge_recursive($data, $reader->read($scope));
}
return $this->mapper->execute($data);
}
}
Function Calls
None |
Stats
MD5 | d639a48d555226d48f675c2537f6a05e |
Eval Count | 0 |
Decode Time | 114 ms |