blob: bf8a74f9344a1d5e1709f764b1b9bdce3a4ddf2f (
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
|
use shirabe_php_shim::PhpMixed;
use shirabe_semver::constraint::AnyConstraint;
#[derive(Debug)]
pub struct Intervals;
impl Intervals {
pub fn is_subset_of(
_constraint_a: &AnyConstraint,
_constraint_b: &AnyConstraint,
) -> anyhow::Result<bool> {
todo!()
}
pub fn compact_constraint(_constraint: AnyConstraint) -> AnyConstraint {
todo!()
}
pub fn compact(_constraint: &AnyConstraint) -> AnyConstraint {
todo!()
}
pub fn get(_constraint: &AnyConstraint) -> anyhow::Result<PhpMixed> {
todo!()
}
pub fn clear() {
todo!()
}
}
|