aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/intervals.rs
blob: ff04cd83b772f1da5ff42af856c775dc7a3b17dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
use shirabe_php_shim::PhpMixed;
use shirabe_semver::constraint::ConstraintInterface;

#[derive(Debug)]
pub struct Intervals;

impl Intervals {
    pub fn is_subset_of(
        _constraint_a: &dyn ConstraintInterface,
        _constraint_b: &dyn ConstraintInterface,
    ) -> anyhow::Result<bool> {
        todo!()
    }

    pub fn compact_constraint(
        _constraint: Box<dyn ConstraintInterface>,
    ) -> Box<dyn ConstraintInterface> {
        todo!()
    }

    pub fn compact(_constraint: &dyn ConstraintInterface) -> Box<dyn ConstraintInterface> {
        todo!()
    }

    pub fn get(_constraint: &dyn ConstraintInterface) -> anyhow::Result<PhpMixed> {
        todo!()
    }

    pub fn clear() {
        todo!()
    }
}