blob: f886197411c22186e997d66158303139b6309601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
use indexmap::IndexMap;
use shirabe_php_shim::PhpMixed;
#[derive(Debug)]
pub struct MetadataMinifier;
impl MetadataMinifier {
pub fn expand(minified_data: IndexMap<String, PhpMixed>) -> IndexMap<String, PhpMixed> {
todo!()
}
pub fn minify(packages: IndexMap<String, PhpMixed>) -> IndexMap<String, PhpMixed> {
todo!()
}
}
|