aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs b/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
index a292a52..80105e9 100644
--- a/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
+++ b/crates/shirabe-external-packages/src/symfony/console/input/argv_input.rs
@@ -12,13 +12,17 @@ use shirabe_php_shim::PhpMixed;
///
/// Usage:
///
-/// $input = new ArgvInput();
+/// ```php
+/// $input = new ArgvInput();
+/// ```
///
/// By default, the `$_SERVER['argv']` array is used for the input values.
///
/// This can be overridden by explicitly passing the input values in the constructor:
///
-/// $input = new ArgvInput($_SERVER['argv']);
+/// ```php
+/// $input = new ArgvInput($_SERVER['argv']);
+/// ```
///
/// If you pass it yourself, don't forget that the first element of the array
/// is the name of the running application.