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.
 */
declare(strict_types=1);

namespace Magento\Catalog\Model\ProductLink\Data;

use Magento\Catalog\Api\Data\ProductLinkInterface;

/**
 * Result of finding a list of links.
 *
 * @api
 */
interface ListResultInterface
{
    /**
     * Found links, null if error occurred.
     *
     * @return ProductLinkInterface[]|null
     */
    public function getResult(): ?array;

    /**
     * Error that occurred during retrieval of the list.
     *
     * @return \Throwable|null
     */
    public function getError(): ?\Throwable;
}
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Copyright  Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Catalog\Model\ProductLink\Data;

use Magento\Catalog\Api\Data\ProductLinkInterface;

/**
 * Result of finding a list of links.
 *
 * @api
 */
interface ListResultInterface
{
    /**
     * Found links, null if error occurred.
     *
     * @return ProductLinkInterface[]|null
     */
    public function getResult(): ?array;

    /**
     * Error that occurred during retrieval of the list.
     *
     * @return \Throwable|null
     */
    public function getError(): ?\Throwable;
}

Function Calls

None

Variables

None

Stats

MD5 4f56a6ed186cd471d6484a5df69e51bc
Eval Count 0
Decode Time 79 ms