aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-semver/src/constraint/match_none_constraint.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-semver/src/constraint/match_none_constraint.rs')
-rw-r--r--crates/shirabe-semver/src/constraint/match_none_constraint.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/shirabe-semver/src/constraint/match_none_constraint.rs b/crates/shirabe-semver/src/constraint/match_none_constraint.rs
index 08cb3194..fd2b0c6e 100644
--- a/crates/shirabe-semver/src/constraint/match_none_constraint.rs
+++ b/crates/shirabe-semver/src/constraint/match_none_constraint.rs
@@ -1,6 +1,7 @@
//! ref: composer/vendor/composer/semver/src/Constraint/MatchNoneConstraint.php
use crate::constraint::Bound;
+use shirabe_php_shim::CmpOp;
#[derive(Debug, Clone)]
pub struct MatchNoneConstraint {
@@ -12,7 +13,7 @@ impl MatchNoneConstraint {
Self { pretty_string }
}
- pub fn compile(&self, _other_operator: i64) -> String {
+ pub fn compile(&self, _other_operator: CmpOp) -> String {
"false".to_string()
}