aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs')
-rw-r--r--crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs b/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
deleted file mode 100644
index b113f71..0000000
--- a/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-//! ref: composer/vendor/composer/semver/src/CompilingMatcher.php
-
-use shirabe_semver::constraint::AnyConstraint;
-
-#[derive(Debug)]
-pub struct CompilingMatcher;
-
-impl CompilingMatcher {
- pub fn r#match(_constraint: &AnyConstraint, _package: &dyn std::any::Any) -> bool {
- todo!()
- }
-
- pub fn matches(_constraint: &AnyConstraint, _operator: i64, _version: &str) -> bool {
- todo!()
- }
-
- pub fn match_(_constraint: &AnyConstraint, _operator: i64, _version: &str) -> bool {
- todo!()
- }
-
- pub fn clear() {
- todo!()
- }
-}