aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/finder/finder.rs
blob: 95bc4f73c57cdea4a063c0e13963a3931adac593 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use crate::symfony::component::finder::spl_file_info::SplFileInfo;

#[derive(Debug)]
pub struct Finder;

impl Finder {
    pub fn new() -> Self {
        todo!()
    }

    pub fn create() -> Self {
        todo!()
    }

    pub fn files(&mut self) -> &mut Self {
        todo!()
    }

    pub fn directories(&mut self) -> &mut Self {
        todo!()
    }

    pub fn depth(&mut self, level: i64) -> &mut Self {
        todo!()
    }

    pub fn r#in(&mut self, dirs: &str) -> &mut Self {
        todo!()
    }

    pub fn ignore_vcs(&mut self, ignore_vcs: bool) -> &mut Self {
        todo!()
    }

    pub fn ignore_dot_files(&mut self, ignore_dot_files: bool) -> &mut Self {
        todo!()
    }

    pub fn not_name(&mut self, pattern: &str) -> &mut Self {
        todo!()
    }

    pub fn name(&mut self, pattern: &str) -> &mut Self {
        todo!()
    }

    pub fn sort_by_name(&mut self) -> &mut Self {
        todo!()
    }

    pub fn iter(&self) -> impl Iterator<Item = SplFileInfo> {
        todo!();
        std::iter::empty()
    }
}