thomas-kl1/php-combine-conditions

View on GitHub
src/Operator/Comparator/GtOperator.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);
/**
 * Copyright © Thomas Klein, All rights reserved.
 * See LICENSE bundled with this library for license details.
 */

namespace LogicTree\Operator\Comparator;

/**
 * The GREATER THAN:
 * The output is "true" if $expr1 is strictly greater than $expr2.
 */
final class GtOperator extends AbstractCompareTwo
{
    public const CODE = 'gt';

    public function executeComparison(mixed $expr1, mixed $expr2): bool
    {
        return $expr1 > $expr2;
    }
}