From 530537e48fa53c6d8a4e49bfeb8abc221401e450 Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Sat, 1 Nov 2014 20:41:34 -0400 Subject: [PATCH] Fixes #5817 [skip ci] --- framework/console/controllers/BaseMigrateController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/console/controllers/BaseMigrateController.php b/framework/console/controllers/BaseMigrateController.php index bf49f01998..82a1ee5f30 100644 --- a/framework/console/controllers/BaseMigrateController.php +++ b/framework/console/controllers/BaseMigrateController.php @@ -408,7 +408,7 @@ abstract class BaseMigrateController extends Controller * ~~~ * * @param integer $limit the maximum number of new migrations to be displayed. - * If it is 0, all available new migrations will be displayed. + * If it is `all`, all available new migrations will be displayed. * @throws \yii\console\Exception if invalid limit value passed */ public function actionNew($limit = 10) @@ -642,4 +642,4 @@ abstract class BaseMigrateController extends Controller * @param string $version migration version name. */ abstract protected function removeMigrationHistory($version); -} \ No newline at end of file +}