for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Palmtree\Chrono\Option;
abstract class Comparision
{
public const EQUAL_TO = '==';
public const LESS_THAN = '<';
public const LESS_THAN_OR_EQUAL_TO = '<=';
public const GREATER_THAN = '>';
public const GREATER_THAN_OR_EQUAL_TO = '>=';
}