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\AsynchronousOperations\Model;

use Magento\AsynchronousOperations\Api\Data\OperationInterface;

/**
 * Repository interface to create operation
 */
interface OperationRepositoryInterface
{
    /**
     * Create operation by topic, parameters and group ID
     *
     * @param string $topicName
     * @param array $entityParams
     * format: array(
     *     '<arg1-name>' => '<arg1-value>',
     *     '<arg2-name>' => '<arg2-value>',
     * )
     * @param string $groupId
     * @param int $operationId
     * @return OperationInterface
     */
    public function create($topicName, $entityParams, $groupId, $operationId): OperationInterface;
}
 ?>

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\AsynchronousOperations\Model;

use Magento\AsynchronousOperations\Api\Data\OperationInterface;

/**
 * Repository interface to create operation
 */
interface OperationRepositoryInterface
{
    /**
     * Create operation by topic, parameters and group ID
     *
     * @param string $topicName
     * @param array $entityParams
     * format: array(
     *     '<arg1-name>' => '<arg1-value>',
     *     '<arg2-name>' => '<arg2-value>',
     * )
     * @param string $groupId
     * @param int $operationId
     * @return OperationInterface
     */
    public function create($topicName, $entityParams, $groupId, $operationId): OperationInterface;
}

Function Calls

None

Variables

None

Stats

MD5 5fa5550280d7597e2fe35767e6cf58e9
Eval Count 0
Decode Time 95 ms