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\Product;

use Magento\Framework\EntityManager\HydratorInterface;

/**
 * Class is used to extract data and populate entity with data
 */
class Hydrator implements HydratorInterface
{
    /**
     * @inheritdoc
     */
    public function extract($entity)
    {
        return $entity->getData();
    }

    /**
     * @inheritdoc
     */
    public function hydrate($entity, array $data)
    {
        $lockedAttributes = $entity->getLockedAttributes();
        $entity->unlockAttributes();
        $entity->setData(array_merge($entity->getData(), $data));
        foreach ($lockedAttributes as $attribute) {
            $entity->lockAttribute($attribute);
        }

        return $entity;
    }
}
 ?>

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\Product;

use Magento\Framework\EntityManager\HydratorInterface;

/**
 * Class is used to extract data and populate entity with data
 */
class Hydrator implements HydratorInterface
{
    /**
     * @inheritdoc
     */
    public function extract($entity)
    {
        return $entity->getData();
    }

    /**
     * @inheritdoc
     */
    public function hydrate($entity, array $data)
    {
        $lockedAttributes = $entity->getLockedAttributes();
        $entity->unlockAttributes();
        $entity->setData(array_merge($entity->getData(), $data));
        foreach ($lockedAttributes as $attribute) {
            $entity->lockAttribute($attribute);
        }

        return $entity;
    }
}

Function Calls

None

Variables

None

Stats

MD5 bcd8c5fe3587cccd7ed8201170aef15d
Eval Count 0
Decode Time 88 ms