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\Product\Attribute;
/**
* @codeCoverageIgnore
*/
class Type extends \Magento\Framework\Model\AbstractExtensibleModel implements
\Magento\Catalog\Api\Data\ProductAttributeTypeInterface
{
/**
* {@inheritdoc}
*/
public function getValue()
{
return $this->getData('value');
}
/**
* {@inheritdoc}
*/
public function getLabel()
{
return $this->getData(self::LABEL);
}
/**
* Set value
*
* @param string $value
* @return $this
*/
public function setValue($value)
{
return $this->setData(self::VALUE, $value);
}
/**
* Set type label
*
* @param string $label
* @return $this
*/
public function setLabel($label)
{
return $this->setData(self::LABEL, $label);
}
/**
* {@inheritdoc}
*
* @return \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface|null
*/
public function getExtensionAttributes()
{
return $this->_getExtensionAttributes();
}
/**
* {@inheritdoc}
*
* @param \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(
\Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
) {
return $this->_setExtensionAttributes($extensionAttributes);
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Model\Product\Attribute;
/**
* @codeCoverageIgnore
*/
class Type extends \Magento\Framework\Model\AbstractExtensibleModel implements
\Magento\Catalog\Api\Data\ProductAttributeTypeInterface
{
/**
* {@inheritdoc}
*/
public function getValue()
{
return $this->getData('value');
}
/**
* {@inheritdoc}
*/
public function getLabel()
{
return $this->getData(self::LABEL);
}
/**
* Set value
*
* @param string $value
* @return $this
*/
public function setValue($value)
{
return $this->setData(self::VALUE, $value);
}
/**
* Set type label
*
* @param string $label
* @return $this
*/
public function setLabel($label)
{
return $this->setData(self::LABEL, $label);
}
/**
* {@inheritdoc}
*
* @return \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface|null
*/
public function getExtensionAttributes()
{
return $this->_getExtensionAttributes();
}
/**
* {@inheritdoc}
*
* @param \Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(
\Magento\Catalog\Api\Data\ProductAttributeTypeExtensionInterface $extensionAttributes
) {
return $this->_setExtensionAttributes($extensionAttributes);
}
}
Function Calls
| None |
Stats
| MD5 | b8ca7139257fd56412bdd4ce7c677aad |
| Eval Count | 0 |
| Decode Time | 103 ms |