Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-bundle/Model/Source/Option/Selection/Price/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-bundle/Model/Source/Option/Selection/Price/Type.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Bundle\Model\Source\Option\Selection\Price;

use Magento\Bundle\Api\Data\LinkInterface;

/**
 * Extended Attributes Source Model
 *
 * @api
 * @since 100.0.2
 */
class Type implements \Magento\Framework\Option\ArrayInterface
{
    /**
     * @return array
     */
    public function toOptionArray()
    {
        return [
            ['value' => LinkInterface::PRICE_TYPE_FIXED, 'label' => __('Fixed')],
            ['value' => LinkInterface::PRICE_TYPE_PERCENT, 'label' => __('Percent')]
        ];
    }
}