for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kontrolio\Rules;
abstract class AbstractComparisonRule extends AbstractRule
{
/**
* @var mixed
*/
protected $value;
* AbstractComparisonRule constructor.
*
* @param $value
public function __construct($value)
$this->value = $value;
}