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\Test\Unit\Helper\Catalog\Product;

use Magento\Bundle\Model\Product\Price;
use Magento\Bundle\Model\Product\Type;
use Magento\Bundle\Model\ResourceModel\Option\Collection;
use Magento\Bundle\Pricing\Price\TaxPrice;
use Magento\Catalog\Helper\Product\Configuration;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\Configuration\Item\ItemInterface;
use Magento\Catalog\Model\Product\Configuration\Item\Option\OptionInterface;
use Magento\Catalog\Model\Product\Option;
use Magento\Framework\Escaper;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Pricing\Helper\Data;
use Magento\Framework\Serialize\Serializer\Json;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

/**
 * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
 */
class ConfigurationTest extends TestCase
{
    /**
     * @var Data|MockObject
     */
    private $pricingHelper;

    /**
     * @var Configuration|MockObject
     */
    private $productConfiguration;

    /**
     * @var Escaper|MockObject
     */
    private $escaper;

    /**
     * @var \Magento\Bundle\Helper\Catalog\Product\Configuration
     */
    private $helper;

    /**
     * @var ItemInterface|MockObject
     */
    private $item;

    /**
     * @var Json
     */
    private $serializer;

    /**
     * @var TaxPrice|MockObject
     */
    private $taxHelper;

    /**
     * @inheritDoc
     */
    protected function setUp(): void
    {
        $this->pricingHelper = $this->createPartialMock(Data::class, ['currency']);
        $this->productConfiguration = $this->createMock(Configuration::class);
        $this->escaper = $this->createPartialMock(Escaper::class, ['escapeHtml']);
        $this->item = $this->getMockBuilder(ItemInterface::class)
            ->addMethods(['getQty'])
            ->onlyMethods(['getProduct', 'getOptionByCode', 'getFileDownloadParams'])
            ->getMockForAbstractClass();
        $this->serializer = $this->getMockBuilder(Json::class)
            ->onlyMethods(['unserialize'])
            ->getMockForAbstractClass();
        $this->taxHelper = $this->createPartialMock(TaxPrice::class, ['displayCartPricesBoth', 'getTaxPrice']);

        $this->serializer->expects($this->any())
            ->method('unserialize')
            ->willReturnCallback(
                function ($value) {
                    return json_decode($value, true);
                }
            );

        $this->helper = (new ObjectManager($this))->getObject(
            \Magento\Bundle\Helper\Catalog\Product\Configuration::class,
            [
                'pricingHelper' => $this->pricingHelper,
                'productConfiguration' => $this->productConfiguration,
                'escaper' => $this->escaper,
                'serializer' => $this->serializer,
                'taxHelper' => $this->taxHelper
            ]
        );
    }

    /**
     * @return void
     */
    public function testGetSelectionQty(): void
    {
        $selectionId = 15;
        $selectionQty = 35;
        $product = $this->createMock(Product::class);
        $option = $this->getMockBuilder(Option::class)
            ->addMethods(['getValue'])
            ->onlyMethods(['__wakeup'])
            ->disableOriginalConstructor()
            ->getMock();

        $product->expects($this->once())
            ->method('getCustomOption')
            ->with('selection_qty_' . $selectionId)
            ->willReturn($option);
        $option->expects($this->once())
            ->method('getValue')
            ->willReturn($selectionQty);

        $this->assertEquals($selectionQty, $this->helper->getSelectionQty($product, $selectionId));
    }

    /**
     * @return void
     */
    public function testGetSelectionQtyIfCustomOptionIsNotSet(): void
    {
        $selectionId = 15;
        $product = $this->createMock(Product::class);

        $product->expects($this->once())->method('getCustomOption')->with('selection_qty_' . $selectionId)
            ->willReturn(null);

        $this->assertEquals(0, $this->helper->getSelectionQty($product, $selectionId));
    }

    /**
     * @return void
     */
    public function testGetSelectionFinalPrice(): void
    {
        $itemQty = 2;

        $product = $this->createMock(Product::class);
        $price = $this->createMock(Price::class);
        $selectionProduct = $this->createMock(Product::class);

        $selectionProduct->expects($this->once())->method('unsetData')->with('final_price');
        $this->item->expects($this->once())->method('getProduct')->willReturn($product);
        $this->item->expects($this->once())->method('getQty')->willReturn($itemQty);
        $product->expects($this->once())->method('getPriceModel')->willReturn($price);
        $price->expects($this->once())->method('getSelectionFinalTotalPrice')
            ->with($product, $selectionProduct, $itemQty, 0, false, true);

        $this->helper->getSelectionFinalPrice($this->item, $selectionProduct);
    }

    /**
     * @return void
     */
    public function testGetBundleOptionsEmptyBundleOptionsIds(): void
    {
        $typeInstance = $this->createMock(Type::class);
        $product = $this->createPartialMock(Product::class, ['getTypeInstance', '__wakeup']);

        $product->expects($this->once())->method('getTypeInstance')->willReturn($typeInstance);
        $this->item->expects($this->once())->method('getProduct')->willReturn($product);
        $this->item->expects($this->once())->method('getOptionByCode')->with('bundle_option_ids')
            ->willReturn(null);

        $this->assertEquals([], $this->helper->getBundleOptions($this->item));
    }

    /**
     * @return void
     * @throws LocalizedException
     */
    public function testGetBundleOptionsEmptyBundleSelectionIds(): void
    {
        $optionIds = '{"0":"1"}';
        $collection = $this->createMock(Collection::class);
        $product = $this->createPartialMock(Product::class, ['getTypeInstance', '__wakeup']);
        $typeInstance = $this->createPartialMock(Type::class, ['getOptionsByIds']);
        $selectionOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );
        $itemOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );

        $selectionOption->expects($this->once())
            ->method('getValue')
            ->willReturn('[]');
        $itemOption->expects($this->once())
            ->method('getValue')
            ->willReturn($optionIds);
        $typeInstance->expects($this->once())
            ->method('getOptionsByIds')
            ->with(
                json_decode($optionIds, true),
                $product
            )
            ->willReturn($collection);
        $product->expects($this->once())
            ->method('getTypeInstance')
            ->willReturn($typeInstance);
        $this->item->expects($this->once())
            ->method('getProduct')
            ->willReturn($product);
        $this->item
            ->method('getOptionByCode')
            ->willReturnCallback(
                function ($arg1) use ($itemOption, $selectionOption) {
                    if ($arg1 == 'bundle_option_ids') {
                        return $itemOption;
                    } elseif ($arg1 == 'bundle_selection_ids') {
                        return $selectionOption;
                    }
                }
            );

        $this->assertEquals([], $this->helper->getBundleOptions($this->item));
    }

    /**
     * @param $includingTax
     * @param $displayCartPriceBoth
     * @return void
     * @dataProvider getTaxConfiguration
     * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
     */
    public function testGetOptions($includingTax, $displayCartPriceBoth): void
    {
        $optionIds = '{"0":"1"}';
        $selectionIds =  '{"0":"2"}';
        $selectionId = '2';
        $product = $this->getMockBuilder(Product::class)
            ->addMethods(['getSelectionId'])
            ->onlyMethods(['getTypeInstance', '__wakeup', 'getCustomOption', 'getName', 'getPriceModel'])
            ->disableOriginalConstructor()
            ->getMock();
        $typeInstance = $this->createPartialMock(
            Type::class,
            ['getOptionsByIds', 'getSelectionsByIds']
        );
        $priceModel = $this->createPartialMock(
            Price::class,
            ['getSelectionFinalTotalPrice']
        );
        $selectionQty = $this->createPartialMock(
            \Magento\Quote\Model\Quote\Item\Option::class,
            ['getValue', '__wakeup']
        );
        $bundleOption = $this->getMockBuilder(\Magento\Bundle\Model\Option::class)->addMethods(['getSelections'])
            ->onlyMethods(['getTitle', '__wakeup'])
            ->disableOriginalConstructor()
            ->getMock();
        $selectionOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );
        $collection = $this->createPartialMock(
            Collection::class,
            ['appendSelections']
        );
        $itemOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );
        $collection2 = $this->createMock(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class);

        $this->escaper->expects($this->once())
            ->method('escapeHtml')
            ->with('name')
            ->willReturn('name');
        if ($displayCartPriceBoth) {
            $this->taxHelper->expects($this->any())
                ->method('getTaxPrice')
                ->willReturnCallback(
                    function ($product, $amount, $includingTax) {
                        if ($product && $amount == 15.00 && ($includingTax || !$includingTax)) {
                            return 15.00;
                        }
                    }
                );

        } else {
            $this->taxHelper->expects($this->any())
                ->method('getTaxPrice')
                ->with($product, 15.00, $includingTax)
                ->willReturn(15.00);
        }
        $this->taxHelper->expects($this->any())
            ->method('displayCartPricesBoth')
            ->willReturn((bool)$displayCartPriceBoth);
        $this->pricingHelper->expects($this->atLeastOnce())->method('currency')->with(15.00)
            ->willReturn('<span class="price">$15.00</span>');
        $priceModel->expects($this->once())->method('getSelectionFinalTotalPrice')->willReturn(15.00);
        $selectionQty->expects($this->any())->method('getValue')->willReturn(1);
        $bundleOption->expects($this->any())->method('getSelections')->willReturn([$product]);
        $bundleOption->expects($this->once())->method('getTitle')->willReturn('title');
        $selectionOption->expects($this->once())->method('getValue')->willReturn($selectionIds);
        $collection->expects($this->once())->method('appendSelections')->with($collection2, true)
            ->willReturn([$bundleOption]);
        $itemOption->expects($this->once())->method('getValue')->willReturn($optionIds);
        $typeInstance->expects($this->once())
            ->method('getOptionsByIds')
            ->with(
                json_decode($optionIds, true),
                $product
            )
            ->willReturn($collection);
        $typeInstance->expects($this->once())
            ->method('getSelectionsByIds')
            ->with(json_decode($selectionIds, true), $product)
            ->willReturn($collection2);
        $product->expects($this->once())->method('getTypeInstance')->willReturn($typeInstance);
        $product->expects($this->any())->method('getCustomOption')->with('selection_qty_' . $selectionId)
            ->willReturn($selectionQty);
        $product->expects($this->any())->method('getSelectionId')->willReturn($selectionId);
        $product->expects($this->once())->method('getName')->willReturn('name');
        $product->expects($this->once())->method('getPriceModel')->willReturn($priceModel);
        $this->item->expects($this->any())->method('getProduct')->willReturn($product);
        $this->item
            ->method('getOptionByCode')
            ->willReturnCallback(fn($param) => match ([$param]) {
                ['bundle_option_ids'] => $itemOption,
                ['bundle_selection_ids'] => $selectionOption
            });
        $this->productConfiguration->expects($this->once())->method('getCustomOptions')->with($this->item)
            ->willReturn([0 => ['label' => 'title', 'value' => 'value']]);

        if ($displayCartPriceBoth) {
            $value = '1 x name <span class="price">$15.00</span> Excl. tax: <span class="price">$15.00</span>';
        } else {
            $value = '1 x name <span class="price">$15.00</span>';
        }
        $this->assertEquals(
            [
                [
                    'label' => 'title',
                    'value' => [$value],
                    'has_html' => true
                ],
                ['label' => 'title', 'value' => 'value']
            ],
            $this->helper->getOptions($this->item)
        );
    }

    /**
     * Data provider for testGetOptions
     *
     * @return array
     */
    public static function getTaxConfiguration(): array
    {
        return [
            [null, false],
            [false, 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\Test\Unit\Helper\Catalog\Product;

use Magento\Bundle\Model\Product\Price;
use Magento\Bundle\Model\Product\Type;
use Magento\Bundle\Model\ResourceModel\Option\Collection;
use Magento\Bundle\Pricing\Price\TaxPrice;
use Magento\Catalog\Helper\Product\Configuration;
use Magento\Catalog\Model\Product;
use Magento\Catalog\Model\Product\Configuration\Item\ItemInterface;
use Magento\Catalog\Model\Product\Configuration\Item\Option\OptionInterface;
use Magento\Catalog\Model\Product\Option;
use Magento\Framework\Escaper;
use Magento\Framework\Exception\LocalizedException;
use Magento\Framework\Pricing\Helper\Data;
use Magento\Framework\Serialize\Serializer\Json;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

/**
 * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
 */
class ConfigurationTest extends TestCase
{
    /**
     * @var Data|MockObject
     */
    private $pricingHelper;

    /**
     * @var Configuration|MockObject
     */
    private $productConfiguration;

    /**
     * @var Escaper|MockObject
     */
    private $escaper;

    /**
     * @var \Magento\Bundle\Helper\Catalog\Product\Configuration
     */
    private $helper;

    /**
     * @var ItemInterface|MockObject
     */
    private $item;

    /**
     * @var Json
     */
    private $serializer;

    /**
     * @var TaxPrice|MockObject
     */
    private $taxHelper;

    /**
     * @inheritDoc
     */
    protected function setUp(): void
    {
        $this->pricingHelper = $this->createPartialMock(Data::class, ['currency']);
        $this->productConfiguration = $this->createMock(Configuration::class);
        $this->escaper = $this->createPartialMock(Escaper::class, ['escapeHtml']);
        $this->item = $this->getMockBuilder(ItemInterface::class)
            ->addMethods(['getQty'])
            ->onlyMethods(['getProduct', 'getOptionByCode', 'getFileDownloadParams'])
            ->getMockForAbstractClass();
        $this->serializer = $this->getMockBuilder(Json::class)
            ->onlyMethods(['unserialize'])
            ->getMockForAbstractClass();
        $this->taxHelper = $this->createPartialMock(TaxPrice::class, ['displayCartPricesBoth', 'getTaxPrice']);

        $this->serializer->expects($this->any())
            ->method('unserialize')
            ->willReturnCallback(
                function ($value) {
                    return json_decode($value, true);
                }
            );

        $this->helper = (new ObjectManager($this))->getObject(
            \Magento\Bundle\Helper\Catalog\Product\Configuration::class,
            [
                'pricingHelper' => $this->pricingHelper,
                'productConfiguration' => $this->productConfiguration,
                'escaper' => $this->escaper,
                'serializer' => $this->serializer,
                'taxHelper' => $this->taxHelper
            ]
        );
    }

    /**
     * @return void
     */
    public function testGetSelectionQty(): void
    {
        $selectionId = 15;
        $selectionQty = 35;
        $product = $this->createMock(Product::class);
        $option = $this->getMockBuilder(Option::class)
            ->addMethods(['getValue'])
            ->onlyMethods(['__wakeup'])
            ->disableOriginalConstructor()
            ->getMock();

        $product->expects($this->once())
            ->method('getCustomOption')
            ->with('selection_qty_' . $selectionId)
            ->willReturn($option);
        $option->expects($this->once())
            ->method('getValue')
            ->willReturn($selectionQty);

        $this->assertEquals($selectionQty, $this->helper->getSelectionQty($product, $selectionId));
    }

    /**
     * @return void
     */
    public function testGetSelectionQtyIfCustomOptionIsNotSet(): void
    {
        $selectionId = 15;
        $product = $this->createMock(Product::class);

        $product->expects($this->once())->method('getCustomOption')->with('selection_qty_' . $selectionId)
            ->willReturn(null);

        $this->assertEquals(0, $this->helper->getSelectionQty($product, $selectionId));
    }

    /**
     * @return void
     */
    public function testGetSelectionFinalPrice(): void
    {
        $itemQty = 2;

        $product = $this->createMock(Product::class);
        $price = $this->createMock(Price::class);
        $selectionProduct = $this->createMock(Product::class);

        $selectionProduct->expects($this->once())->method('unsetData')->with('final_price');
        $this->item->expects($this->once())->method('getProduct')->willReturn($product);
        $this->item->expects($this->once())->method('getQty')->willReturn($itemQty);
        $product->expects($this->once())->method('getPriceModel')->willReturn($price);
        $price->expects($this->once())->method('getSelectionFinalTotalPrice')
            ->with($product, $selectionProduct, $itemQty, 0, false, true);

        $this->helper->getSelectionFinalPrice($this->item, $selectionProduct);
    }

    /**
     * @return void
     */
    public function testGetBundleOptionsEmptyBundleOptionsIds(): void
    {
        $typeInstance = $this->createMock(Type::class);
        $product = $this->createPartialMock(Product::class, ['getTypeInstance', '__wakeup']);

        $product->expects($this->once())->method('getTypeInstance')->willReturn($typeInstance);
        $this->item->expects($this->once())->method('getProduct')->willReturn($product);
        $this->item->expects($this->once())->method('getOptionByCode')->with('bundle_option_ids')
            ->willReturn(null);

        $this->assertEquals([], $this->helper->getBundleOptions($this->item));
    }

    /**
     * @return void
     * @throws LocalizedException
     */
    public function testGetBundleOptionsEmptyBundleSelectionIds(): void
    {
        $optionIds = '{"0":"1"}';
        $collection = $this->createMock(Collection::class);
        $product = $this->createPartialMock(Product::class, ['getTypeInstance', '__wakeup']);
        $typeInstance = $this->createPartialMock(Type::class, ['getOptionsByIds']);
        $selectionOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );
        $itemOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );

        $selectionOption->expects($this->once())
            ->method('getValue')
            ->willReturn('[]');
        $itemOption->expects($this->once())
            ->method('getValue')
            ->willReturn($optionIds);
        $typeInstance->expects($this->once())
            ->method('getOptionsByIds')
            ->with(
                json_decode($optionIds, true),
                $product
            )
            ->willReturn($collection);
        $product->expects($this->once())
            ->method('getTypeInstance')
            ->willReturn($typeInstance);
        $this->item->expects($this->once())
            ->method('getProduct')
            ->willReturn($product);
        $this->item
            ->method('getOptionByCode')
            ->willReturnCallback(
                function ($arg1) use ($itemOption, $selectionOption) {
                    if ($arg1 == 'bundle_option_ids') {
                        return $itemOption;
                    } elseif ($arg1 == 'bundle_selection_ids') {
                        return $selectionOption;
                    }
                }
            );

        $this->assertEquals([], $this->helper->getBundleOptions($this->item));
    }

    /**
     * @param $includingTax
     * @param $displayCartPriceBoth
     * @return void
     * @dataProvider getTaxConfiguration
     * @SuppressWarnings(PHPMD.ExcessiveMethodLength)
     */
    public function testGetOptions($includingTax, $displayCartPriceBoth): void
    {
        $optionIds = '{"0":"1"}';
        $selectionIds =  '{"0":"2"}';
        $selectionId = '2';
        $product = $this->getMockBuilder(Product::class)
            ->addMethods(['getSelectionId'])
            ->onlyMethods(['getTypeInstance', '__wakeup', 'getCustomOption', 'getName', 'getPriceModel'])
            ->disableOriginalConstructor()
            ->getMock();
        $typeInstance = $this->createPartialMock(
            Type::class,
            ['getOptionsByIds', 'getSelectionsByIds']
        );
        $priceModel = $this->createPartialMock(
            Price::class,
            ['getSelectionFinalTotalPrice']
        );
        $selectionQty = $this->createPartialMock(
            \Magento\Quote\Model\Quote\Item\Option::class,
            ['getValue', '__wakeup']
        );
        $bundleOption = $this->getMockBuilder(\Magento\Bundle\Model\Option::class)->addMethods(['getSelections'])
            ->onlyMethods(['getTitle', '__wakeup'])
            ->disableOriginalConstructor()
            ->getMock();
        $selectionOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );
        $collection = $this->createPartialMock(
            Collection::class,
            ['appendSelections']
        );
        $itemOption = $this->createPartialMock(
            OptionInterface::class,
            ['getValue']
        );
        $collection2 = $this->createMock(\Magento\Bundle\Model\ResourceModel\Selection\Collection::class);

        $this->escaper->expects($this->once())
            ->method('escapeHtml')
            ->with('name')
            ->willReturn('name');
        if ($displayCartPriceBoth) {
            $this->taxHelper->expects($this->any())
                ->method('getTaxPrice')
                ->willReturnCallback(
                    function ($product, $amount, $includingTax) {
                        if ($product && $amount == 15.00 && ($includingTax || !$includingTax)) {
                            return 15.00;
                        }
                    }
                );

        } else {
            $this->taxHelper->expects($this->any())
                ->method('getTaxPrice')
                ->with($product, 15.00, $includingTax)
                ->willReturn(15.00);
        }
        $this->taxHelper->expects($this->any())
            ->method('displayCartPricesBoth')
            ->willReturn((bool)$displayCartPriceBoth);
        $this->pricingHelper->expects($this->atLeastOnce())->method('currency')->with(15.00)
            ->willReturn('<span class="price">$15.00</span>');
        $priceModel->expects($this->once())->method('getSelectionFinalTotalPrice')->willReturn(15.00);
        $selectionQty->expects($this->any())->method('getValue')->willReturn(1);
        $bundleOption->expects($this->any())->method('getSelections')->willReturn([$product]);
        $bundleOption->expects($this->once())->method('getTitle')->willReturn('title');
        $selectionOption->expects($this->once())->method('getValue')->willReturn($selectionIds);
        $collection->expects($this->once())->method('appendSelections')->with($collection2, true)
            ->willReturn([$bundleOption]);
        $itemOption->expects($this->once())->method('getValue')->willReturn($optionIds);
        $typeInstance->expects($this->once())
            ->method('getOptionsByIds')
            ->with(
                json_decode($optionIds, true),
                $product
            )
            ->willReturn($collection);
        $typeInstance->expects($this->once())
            ->method('getSelectionsByIds')
            ->with(json_decode($selectionIds, true), $product)
            ->willReturn($collection2);
        $product->expects($this->once())->method('getTypeInstance')->willReturn($typeInstance);
        $product->expects($this->any())->method('getCustomOption')->with('selection_qty_' . $selectionId)
            ->willReturn($selectionQty);
        $product->expects($this->any())->method('getSelectionId')->willReturn($selectionId);
        $product->expects($this->once())->method('getName')->willReturn('name');
        $product->expects($this->once())->method('getPriceModel')->willReturn($priceModel);
        $this->item->expects($this->any())->method('getProduct')->willReturn($product);
        $this->item
            ->method('getOptionByCode')
            ->willReturnCallback(fn($param) => match ([$param]) {
                ['bundle_option_ids'] => $itemOption,
                ['bundle_selection_ids'] => $selectionOption
            });
        $this->productConfiguration->expects($this->once())->method('getCustomOptions')->with($this->item)
            ->willReturn([0 => ['label' => 'title', 'value' => 'value']]);

        if ($displayCartPriceBoth) {
            $value = '1 x name <span class="price">$15.00</span> Excl. tax: <span class="price">$15.00</span>';
        } else {
            $value = '1 x name <span class="price">$15.00</span>';
        }
        $this->assertEquals(
            [
                [
                    'label' => 'title',
                    'value' => [$value],
                    'has_html' => true
                ],
                ['label' => 'title', 'value' => 'value']
            ],
            $this->helper->getOptions($this->item)
        );
    }

    /**
     * Data provider for testGetOptions
     *
     * @return array
     */
    public static function getTaxConfiguration(): array
    {
        return [
            [null, false],
            [false, true]
        ];
    }
}

Function Calls

None

Variables

None

Stats

MD5 4e027484b48d850443ef2ec47a9ed0be
Eval Count 0
Decode Time 98 ms