You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
518 B
26 lines
518 B
<?php |
|
/** |
|
* @link http://www.yiiframework.com/ |
|
* @copyright Copyright (c) 2008 Yii Software LLC |
|
* @license http://www.yiiframework.com/license/ |
|
*/ |
|
|
|
namespace yii\debug\components\search\matches; |
|
|
|
use yii\base\Component; |
|
|
|
/** |
|
* Base mathcer class for all matchers that will be used with filter. |
|
* |
|
* @author Mark Jebri <mark.github@yandex.ru> |
|
* @since 2.0 |
|
*/ |
|
abstract class Base extends Component implements MatcherInterface |
|
{ |
|
|
|
/** |
|
* @var mixed current value to check for the matcher |
|
*/ |
|
public $value; |
|
|
|
}
|
|
|