use Shopware\Core\Framework\Rule\RuleScope;
#[Package('business-ops')]
abstract class DaysSinceRule extends Rule
{ protected string
$operator = Rule::OPERATOR_EQ;
protected ?float
$daysPassed = null;
public function match(RuleScope
$scope): bool
{ if (!
$this->
supportsScope($scope)) { return false;
} $currentDate =
$scope->
getCurrentTime()->
setTime(0, 0, 0, 0
);
if ($this->daysPassed === null &&
$this->operator !== self::OPERATOR_EMPTY
) { throw new UnsupportedValueException(\
gettype($this->daysPassed
), self::
class);
} if (!
$date =
$this->
getDate($scope)) { return RuleComparison::
isNegativeOperator($this->operator
);
}