123456789101112131415161718192021222324252627 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- 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;
- }
- }
|