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\Catalog\Model\Indexer\Product\Eav\Action;
/**
* Class Row reindex action
*/
class Row extends \Magento\Catalog\Model\Indexer\Product\Eav\AbstractAction
{
/**
* Execute Row reindex
*
* @param int|null $id
* @return void
* @throws \Magento\Framework\Exception\InputException
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function execute($id = null)
{
if (!isset($id) || empty($id)) {
throw new \Magento\Framework\Exception\InputException(
__('We can\'t rebuild the index for an undefined product.')
);
}
try {
$this->reindex($id);
} catch (\Exception $e) {
throw new \Magento\Framework\Exception\LocalizedException(__($e->getMessage()), $e);
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Indexer\Product\Eav\Action;
/**
* Class Row reindex action
*/
class Row extends \Magento\Catalog\Model\Indexer\Product\Eav\AbstractAction
{
/**
* Execute Row reindex
*
* @param int|null $id
* @return void
* @throws \Magento\Framework\Exception\InputException
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function execute($id = null)
{
if (!isset($id) || empty($id)) {
throw new \Magento\Framework\Exception\InputException(
__('We can\'t rebuild the index for an undefined product.')
);
}
try {
$this->reindex($id);
} catch (\Exception $e) {
throw new \Magento\Framework\Exception\LocalizedException(__($e->getMessage()), $e);
}
}
}
Function Calls
| None |
Stats
| MD5 | 470db84843927cadc11b591f5799bb4d |
| Eval Count | 0 |
| Decode Time | 101 ms |