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