public function __construct($data, $negate = false, $attribute = null) { parent::__construct(Matcher::BETWEEN, $negate, $attribute); $this->betweenMatcherData = $data; }
/** * @param $data * @param bool|false $negate */ public function __construct($data, $negate = false, $attribute = null) { parent::__construct(Matcher::IN_SEGMENT, $negate, $attribute); $this->userDefinedSegmentMatcherData = $data; }
public function __construct($data, $negate = false, $attribute = null) { parent::__construct(Matcher::LESS_THAN_OR_EQUAL_TO, $negate, $attribute); $this->unaryNumericMatcherData = $data; }
public function __construct($data, $negate = false, $attribute = null) { parent::__construct(Matcher::WHITELIST, $negate, $attribute); $this->whitelistMatcherData = $data; }
public function __construct($negate = false, $attribute = null) { parent::__construct(Matcher::ALL_KEYS, $negate, $attribute); }