<?php
namespace app\components\filtering;
class EmptyCondition extends BaseCondition
{
/**
* @inheritdoc
*/
public static function get($attribute, $value, $modelClass)
{
return [];
}
/**
* @inheritdoc
*/
public static function is($attribute, $value)
{
return true;
}
}