We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf303b commit 5924c09Copy full SHA for 5924c09
phper-test/src/context.rs
@@ -80,7 +80,7 @@ impl Context {
80
script.as_ref().display().to_string(),
81
];
82
cmd.args(&args);
83
- ContextCommand { cmd, args }
+ ContextCommand { cmd }
84
}
85
86
pub fn find_php_fpm(&self) -> Option<String> {
@@ -122,7 +122,6 @@ impl Context {
122
123
pub struct ContextCommand {
124
cmd: Command,
125
- args: Vec<String>,
126
127
128
impl ContextCommand {
@@ -133,10 +132,6 @@ impl ContextCommand {
133
132
command.extend(args);
134
command
135
136
-
137
- pub fn get_args(&self) -> &[String] {
138
- &self.args
139
- }
140
141
142
impl Deref for ContextCommand {
0 commit comments