for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright Copyright (c) 2013-2017 2amigOS! Consulting Group LLC
* @link http://2amigos.us
* @license http://www.opensource.org/licenses/bsd-license.php New BSD License
*/
namespace dosamigos\arrayquery\conditions;
* GreaterThan checks if value is greater than the data searched.
*
* @author Antonio Ramirez <[email protected]>
* @link http://www.ramirezcobos.com/
* @link http://www.2amigos.us/
* @package dosamigos\arrayquery\conditions
class GreaterThan extends Condition
{
* Returns [[LessThan]] condition
* @return LessThan
public function reverse()
return new LessThan($this->value);
}
* @inheritdoc
public function matches($data)
return ($this->checkType($data, $this->value) && $data > $this->value);