芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/yiisoft/yii2-debug/src/components/search/matchers/Base.php
* @since 2.0 */ abstract class Base extends Component implements MatcherInterface { /** * @var mixed base value to check */ protected $baseValue; /** * {@inheritdoc} */ public function setValue($value) { $this->baseValue = $value; } /** * {@inheritdoc} */ public function hasValue() { return !empty($this->baseValue) || ($this->baseValue === '0'); } }