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\CatalogGraphQl\Model\Resolver\Products\DataProvider\Product;

use Magento\Catalog\Model\ResourceModel\Product\Collection;
use Magento\GraphQl\Model\Query\ContextInterface;

/**
 * Processing applied to the collection after load
 */
class CollectionPostProcessor implements CollectionPostProcessorInterface
{
    /**
     * Apply processing to loaded product collection
     *
     * @param Collection $collection
     * @param array $attributeNames
     * @param ContextInterface|null $context
     * @return Collection
     */
    public function process(Collection $collection, array $attributeNames, ContextInterface $context = null): Collection
    {
        if (!$collection->isLoaded()) {
            $collection->load();
        }
        // Methods that perform extra fetches post-load
        if (in_array('media_gallery_entries', $attributeNames)) {
            $collection->addMediaGalleryData();
        }
        if (in_array('media_gallery', $attributeNames)) {
            $collection->addMediaGalleryData();
        }
        if (in_array('options', $attributeNames)) {
            $collection->addOptionsToResult();
        }

        return $collection;
    }
}
 ?>

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\CatalogGraphQl\Model\Resolver\Products\DataProvider\Product;

use Magento\Catalog\Model\ResourceModel\Product\Collection;
use Magento\GraphQl\Model\Query\ContextInterface;

/**
 * Processing applied to the collection after load
 */
class CollectionPostProcessor implements CollectionPostProcessorInterface
{
    /**
     * Apply processing to loaded product collection
     *
     * @param Collection $collection
     * @param array $attributeNames
     * @param ContextInterface|null $context
     * @return Collection
     */
    public function process(Collection $collection, array $attributeNames, ContextInterface $context = null): Collection
    {
        if (!$collection->isLoaded()) {
            $collection->load();
        }
        // Methods that perform extra fetches post-load
        if (in_array('media_gallery_entries', $attributeNames)) {
            $collection->addMediaGalleryData();
        }
        if (in_array('media_gallery', $attributeNames)) {
            $collection->addMediaGalleryData();
        }
        if (in_array('options', $attributeNames)) {
            $collection->addOptionsToResult();
        }

        return $collection;
    }
}

Function Calls

None

Variables

None

Stats

MD5 c24155ea46c3f3e9b78764b081ff1781
Eval Count 0
Decode Time 110 ms