From a39694146d5c96a8d7b46afcba63e803340fd6dc Mon Sep 17 00:00:00 2001 From: Amir Hossein Shokri Date: Wed, 30 Jul 2025 20:26:04 +0330 Subject: [PATCH] improve artisan console docs --- artisan.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artisan.md b/artisan.md index 61e4415c1b..9887ef7d34 100644 --- a/artisan.md +++ b/artisan.md @@ -659,7 +659,7 @@ $name = $this->choice( ### Writing Output -To send output to the console, you may use the `line`, `info`, `comment`, `question`, `warn`, and `error` methods. Each of these methods will use appropriate ANSI colors for their purpose. For example, let's display some general information to the user. Typically, the `info` method will display in the console as green colored text: +To send output to the console, you may use the `line`, `newLine`, `info`, `comment`, `question`, `warn`, `alert`, and `error` methods. Each of these methods will use appropriate ANSI colors for their purpose. For example, let's display some general information to the user. Typically, the `info` method will display in the console as green colored text: ```php /**