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\ProductLink\Converter;
class DefaultConverter implements ConverterInterface
{
/**
* {@inheritdoc}
*/
public function convert(\Magento\Catalog\Model\Product $product)
{
return [
'type' => $product->getTypeId(),
'sku' => $product->getSku(),
'position' => $product->getPosition()
];
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\ProductLink\Converter;
class DefaultConverter implements ConverterInterface
{
/**
* {@inheritdoc}
*/
public function convert(\Magento\Catalog\Model\Product $product)
{
return [
'type' => $product->getTypeId(),
'sku' => $product->getSku(),
'position' => $product->getPosition()
];
}
}
Function Calls
None |
Stats
MD5 | 09afe270e746c8f79eff37a614e6999e |
Eval Count | 0 |
Decode Time | 84 ms |