aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 02:53:53 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 02:53:53 +0900
commita1c7e6908a26e10f6e1f23a51721664b5e2d838d (patch)
treec575c76f1b43359ed74913da4c6a2636643f1ba0 /crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs
parent7f606f36fef0c0467c3c0db3d0da33af486dae8a (diff)
downloadphp-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.gz
php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.tar.zst
php-shirabe-a1c7e6908a26e10f6e1f23a51721664b5e2d838d.zip
chore(style): cargo fmt
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs29
1 files changed, 25 insertions, 4 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs b/crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs
index 9999419..ef48c3d 100644
--- a/crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs
+++ b/crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs
@@ -8,7 +8,12 @@ impl Filesystem {
todo!()
}
- pub fn copy(&self, origin_file: &str, target_file: &str, override_file: bool) -> anyhow::Result<()> {
+ pub fn copy(
+ &self,
+ origin_file: &str,
+ target_file: &str,
+ override_file: bool,
+ ) -> anyhow::Result<()> {
todo!()
}
@@ -20,7 +25,12 @@ impl Filesystem {
todo!()
}
- pub fn touch(&self, files: PhpMixed, time: Option<i64>, atime: Option<i64>) -> anyhow::Result<()> {
+ pub fn touch(
+ &self,
+ files: PhpMixed,
+ time: Option<i64>,
+ atime: Option<i64>,
+ ) -> anyhow::Result<()> {
todo!()
}
@@ -28,7 +38,13 @@ impl Filesystem {
todo!()
}
- pub fn chmod(&self, files: PhpMixed, mode: u32, umask: u32, recursive: bool) -> anyhow::Result<()> {
+ pub fn chmod(
+ &self,
+ files: PhpMixed,
+ mode: u32,
+ umask: u32,
+ recursive: bool,
+ ) -> anyhow::Result<()> {
todo!()
}
@@ -44,7 +60,12 @@ impl Filesystem {
todo!()
}
- pub fn symlink(&self, origin_dir: &str, target_dir: &str, copy_on_windows: bool) -> anyhow::Result<()> {
+ pub fn symlink(
+ &self,
+ origin_dir: &str,
+ target_dir: &str,
+ copy_on_windows: bool,
+ ) -> anyhow::Result<()> {
todo!()
}