aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
blob: dea547544fc1dd320e177e8b89693eec1022f878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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!()
    }
}