Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Pricing/Test/Unit/Price/ |
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Pricing/Test/Unit/Price/Stub.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Pricing\Test\Unit\Price; use Magento\Framework\Pricing\Price\AbstractPrice; /** * Class Stub for testing abstract class AbstractPrice * */ class Stub extends AbstractPrice { /** * Get price value * * @return float */ public function getValue() { $examplePrice = 77.0; return $examplePrice; } }