Your IP : 216.73.216.97


Current Path : /var/www/clients/client3/web2/web/setup/src/Magento/Setup/Fixtures/
Upload File :
Current File : /var/www/clients/client3/web2/web/setup/src/Magento/Setup/Fixtures/PriceProvider.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\Setup\Fixtures;

/**
 * Random price provider for fixtures
 */
class PriceProvider
{
    /**
     * Get random price for product
     *
     * @param int $productIndex
     * @return float
     */
    public function getPrice($productIndex)
    {
        // phpcs:disable
        mt_srand($productIndex);
        switch (mt_rand(0, 3)) {
            case 0:
                return 9.99;
            case 1:
                return 5;
            case 2:
                return 1;
            case 3:
                return mt_rand(1, 10000) / 10;
        }
        // phpcs:enable
    }
}