From a1c7e6908a26e10f6e1f23a51721664b5e2d838d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 02:53:53 +0900 Subject: chore(style): cargo fmt --- .../src/symfony/component/filesystem/filesystem.rs | 29 +++++++++++++++++++--- 1 file changed, 25 insertions(+), 4 deletions(-) (limited to 'crates/shirabe-external-packages/src/symfony/component/filesystem/filesystem.rs') 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, atime: Option) -> anyhow::Result<()> { + pub fn touch( + &self, + files: PhpMixed, + time: Option, + atime: Option, + ) -> 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!() } -- cgit v1.3.1