From 757fa5055ff6fa74c1ba62fff76b3e9b2c69598a Mon Sep 17 00:00:00 2001 From: BRMatt Date: Tue, 13 Jul 2010 18:44:36 +0100 Subject: [PATCH] Updating CLI comment to reflect functionality, fixes #3050 --- classes/kohana/cli.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/kohana/cli.php b/classes/kohana/cli.php index 3e225eecd..140e43feb 100644 --- a/classes/kohana/cli.php +++ b/classes/kohana/cli.php @@ -14,7 +14,7 @@ class Kohana_CLI { * Returns one or more command-line options. Options are specified using * standard CLI syntax: * - * php index.php --username "john.smith" --password "secret" + * php index.php --username=john.smith --password=secret --var="some value with spaces" * * // Get the values of "username" and "password" * $auth = CLI::options('username', 'password');