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\Bundle\Pricing\Price;

/**
 * Configured regular price model.
 */
class ConfiguredRegularPrice extends ConfiguredPrice
{
    /**
     * Price type configured.
     */
    const PRICE_CODE = 'configured_regular_price';

    /**
     * Create Selection Price List.
     *
     * @param \Magento\Bundle\Model\Option $option
     * @return BundleSelectionPrice[]
     */
    protected function createSelectionPriceList(\Magento\Bundle\Model\Option $option): array
    {
        return $this->calculator->createSelectionPriceList($option, $this->product, true);
    }
}
 ?>

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\Bundle\Pricing\Price;

/**
 * Configured regular price model.
 */
class ConfiguredRegularPrice extends ConfiguredPrice
{
    /**
     * Price type configured.
     */
    const PRICE_CODE = 'configured_regular_price';

    /**
     * Create Selection Price List.
     *
     * @param \Magento\Bundle\Model\Option $option
     * @return BundleSelectionPrice[]
     */
    protected function createSelectionPriceList(\Magento\Bundle\Model\Option $option): array
    {
        return $this->calculator->createSelectionPriceList($option, $this->product, true);
    }
}

Function Calls

None

Variables

None

Stats

MD5 61ba5458bdb90cf36afbb5655943f209
Eval Count 0
Decode Time 104 ms