<?php

namespace Leadlion\Autogedal\Ui\Component\Form\System;

use Magento\Framework\Data\OptionSourceInterface;

class Compare implements OptionSourceInterface
{
    /**
     * {@inheritdoc}
     */
    public function toOptionArray()
    {
        return [
            ['label' => 'Equal', 'value' => 'eq'],
            ['label' => 'Greater or equal than', 'value' => 'gteq'],
            ['label' => 'Greater than', 'value' => 'gt'],
            ['label' => 'Less than', 'value' => 'lt'],
            ['label' => 'Less or equal than', 'value' => 'lteq']
        ];
    }
}
