acelot/search-schema

View on GitHub
src/Rule/Lte.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

namespace Acelot\SearchSchema\Rule;

final class Lte extends AbstractSimpleRule
{
    protected function getOperator(): string
    {
        return '<=';
    }
}