aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/process_executor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/util/process_executor.rs')
-rw-r--r--crates/shirabe/src/util/process_executor.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/shirabe/src/util/process_executor.rs b/crates/shirabe/src/util/process_executor.rs
index 9e89bdd4..c24e2f83 100644
--- a/crates/shirabe/src/util/process_executor.rs
+++ b/crates/shirabe/src/util/process_executor.rs
@@ -790,7 +790,6 @@ impl ProcessExecutor {
self.allow_async = true;
}
- /// @return string[]
pub fn split_lines(&self, output: &str) -> Vec<String> {
let output = trim(output, None);
@@ -821,7 +820,6 @@ impl ProcessExecutor {
Self::escape_argument(argument)
}
- /// @param string|list<string> $command
fn output_command_run(&self, command: &PhpMixed, cwd: Option<&str>, r#async: bool) {
Self::output_command_run_with(&self.io, command, cwd, r#async);
}
@@ -943,7 +941,6 @@ impl ProcessExecutor {
argument
}
- /// @param string[]|string $command
pub fn requires_git_dir_env(&self, command: &PhpMixed) -> bool {
let cmd: Vec<String> = if !is_array(command) {
explode(" ", command.as_string().unwrap_or(""))