diff options
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.rs | 22 |
1 files changed, 22 insertions, 0 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 new file mode 100644 index 0000000..dea5475 --- /dev/null +++ b/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs @@ -0,0 +1,22 @@ +use shirabe_php_shim::PhpMixed; + +#[derive(Debug)] +pub struct CompilingMatcher; + +impl CompilingMatcher { + pub fn r#match(constraint: &dyn std::any::Any, package: &dyn std::any::Any) -> bool { + todo!() + } + + pub fn matches(constraint: &dyn std::any::Any, operator: &str, version: &str) -> bool { + todo!() + } + + pub fn match_(constraint: &dyn std::any::Any, operator: &str, version: &str) -> bool { + todo!() + } + + pub fn clear() { + todo!() + } +} |
