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;

/**
 * Product type details
 * @api
 * @since 100.0.2
 */
interface ProductTypeInterface extends ExtensibleDataInterface
{
    /**
     * Get product type code
     *
     * @return string
     */
    public function getName();

    /**
     * Set product type code
     *
     * @param string $name
     * @return $this
     */
    public function setName($name);

    /**
     * Get product type label
     *
     * @return string
     */
    public function getLabel();

    /**
     * Set product type label
     *
     * @param string $label
     * @return $this
     */
    public function setLabel($label);

    /**
     * Retrieve existing extension attributes object.
     *
     * @return \Magento\Catalog\Api\Data\ProductTypeExtensionInterface|null
     */
    public function getExtensionAttributes();

    /**
     * Set an extension attributes object.
     *
     * @param \Magento\Catalog\Api\Data\ProductTypeExtensionInterface $extensionAttributes
     * @return $this
     */
    public function setExtensionAttributes(
        \Magento\Catalog\Api\Data\ProductTypeExtensionInterface $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;

/**
 * Product type details
 * @api
 * @since 100.0.2
 */
interface ProductTypeInterface extends ExtensibleDataInterface
{
    /**
     * Get product type code
     *
     * @return string
     */
    public function getName();

    /**
     * Set product type code
     *
     * @param string $name
     * @return $this
     */
    public function setName($name);

    /**
     * Get product type label
     *
     * @return string
     */
    public function getLabel();

    /**
     * Set product type label
     *
     * @param string $label
     * @return $this
     */
    public function setLabel($label);

    /**
     * Retrieve existing extension attributes object.
     *
     * @return \Magento\Catalog\Api\Data\ProductTypeExtensionInterface|null
     */
    public function getExtensionAttributes();

    /**
     * Set an extension attributes object.
     *
     * @param \Magento\Catalog\Api\Data\ProductTypeExtensionInterface $extensionAttributes
     * @return $this
     */
    public function setExtensionAttributes(
        \Magento\Catalog\Api\Data\ProductTypeExtensionInterface $extensionAttributes
    );
}

Function Calls

None

Variables

None

Stats

MD5 c6fbb895436bc4ac1b638295fb266b25
Eval Count 0
Decode Time 106 ms