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\Api\Data;
use Magento\Framework\Api\ExtensibleDataInterface;
/**
* @api
* @since 100.0.2
*/
interface ProductAttributeTypeInterface extends ExtensibleDataInterface
{
const VALUE = 'value';
const LABEL = 'label';
/**
* Get value
*
* @return string
*/
public function getValue();
/**
* Set value
*
* @param string $value
* @return $this
*/
public function setValue($value);
/**
* Get type label
*
* @return string
*/
public function getLabel();
/**
* Set type label
*
* @param string $label
* @return $this
*/
public function setLabel($label);
/**
* Retrieve existing extension attributes object.
*
* @return \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface|null
*/
public function getExtensionAttributes();
/**
* Set an extension attributes object.
*
* @param \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(
\Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
);
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Api\Data;
use Magento\Framework\Api\ExtensibleDataInterface;
/**
* @api
* @since 100.0.2
*/
interface ProductAttributeTypeInterface extends ExtensibleDataInterface
{
const VALUE = 'value';
const LABEL = 'label';
/**
* Get value
*
* @return string
*/
public function getValue();
/**
* Set value
*
* @param string $value
* @return $this
*/
public function setValue($value);
/**
* Get type label
*
* @return string
*/
public function getLabel();
/**
* Set type label
*
* @param string $label
* @return $this
*/
public function setLabel($label);
/**
* Retrieve existing extension attributes object.
*
* @return \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface|null
*/
public function getExtensionAttributes();
/**
* Set an extension attributes object.
*
* @param \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(
\Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
);
}
Function Calls
| None |
Stats
| MD5 | f99880445ec7f6c4573c6e990491a643 |
| Eval Count | 0 |
| Decode Time | 100 ms |