aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/seld/phar_utils/linter.rs
blob: 27238d3156108c9c4e18bb047ce48ef9d2a61116 (plain)
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub struct Linter;

impl Linter {
    pub fn lint(_file: &str, _php_versions: &[String]) -> anyhow::Result<()> {
        todo!()
    }
}