diff options
Diffstat (limited to 'crates/shirabe-symfony-console/src/helper')
| -rw-r--r-- | crates/shirabe-symfony-console/src/helper/symfony_question_helper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe-symfony-console/src/helper/symfony_question_helper.rs b/crates/shirabe-symfony-console/src/helper/symfony_question_helper.rs index 5b4b3ba0..c971b5fd 100644 --- a/crates/shirabe-symfony-console/src/helper/symfony_question_helper.rs +++ b/crates/shirabe-symfony-console/src/helper/symfony_question_helper.rs @@ -138,7 +138,7 @@ impl QuestionHelperInterface for SymfonyQuestionHelper { let mut borrowed = output.borrow_mut(); if let Some(style) = (*borrowed).as_any_mut().downcast_mut::<SymfonyStyle>() { style.new_line(1); - style.error(PhpMixed::String(error.get_message().to_string())); + style.error(&[error.get_message().to_string()]); return; } |
