aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/prohibits_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/prohibits_command.rs')
-rw-r--r--crates/shirabe/src/command/prohibits_command.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/command/prohibits_command.rs b/crates/shirabe/src/command/prohibits_command.rs
index ae38f9d2..c7579efb 100644
--- a/crates/shirabe/src/command/prohibits_command.rs
+++ b/crates/shirabe/src/command/prohibits_command.rs
@@ -74,7 +74,7 @@ impl Command for ProhibitsCommand {
.into(),
InputOption::new(
<Self as BaseDependencyCommand>::OPTION_RECURSIVE,
- Some(shirabe_php_shim::PhpMixed::String("r".to_string())),
+ Some("r"),
Some(InputOption::VALUE_NONE),
"Recursively resolves up to the root package",
None,
@@ -83,7 +83,7 @@ impl Command for ProhibitsCommand {
.into(),
InputOption::new(
<Self as BaseDependencyCommand>::OPTION_TREE,
- Some(shirabe_php_shim::PhpMixed::String("t".to_string())),
+ Some("t"),
Some(InputOption::VALUE_NONE),
"Prints the results as a nested tree",
None,