mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-18 23:43:19 +08:00
applied new style of Yii::t params to all occurences
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
|
||||
namespace yii\console;
|
||||
|
||||
use Yii;
|
||||
use yii\base\InvalidRouteException;
|
||||
|
||||
/**
|
||||
@@ -129,7 +130,7 @@ class Application extends \yii\base\Application
|
||||
try {
|
||||
return parent::runAction($route, $params);
|
||||
} catch (InvalidRouteException $e) {
|
||||
throw new Exception(\Yii::t('yii', 'Unknown command "{command}".', array('{command}' => $route)), 0, $e);
|
||||
throw new Exception(Yii::t('yii', 'Unknown command "{command}".', array('command' => $route)), 0, $e);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ class Controller extends \yii\base\Controller
|
||||
$args[] = $value;
|
||||
} else {
|
||||
throw new Exception(Yii::t('yii', 'Unknown option: --{name}', array(
|
||||
'{name}' => $name,
|
||||
'name' => $name,
|
||||
)));
|
||||
}
|
||||
}
|
||||
@@ -125,7 +125,7 @@ class Controller extends \yii\base\Controller
|
||||
|
||||
if (!empty($missing)) {
|
||||
throw new Exception(Yii::t('yii', 'Missing required arguments: {params}', array(
|
||||
'{params}' => implode(', ', $missing),
|
||||
'params' => implode(', ', $missing),
|
||||
)));
|
||||
}
|
||||
|
||||
|
||||
@@ -58,7 +58,7 @@ class HelpController extends Controller
|
||||
$result = Yii::$app->createController($command);
|
||||
if ($result === false) {
|
||||
throw new Exception(Yii::t('yii', 'No help for unknown command "{command}".', array(
|
||||
'{command}' => $this->ansiFormat($command, Console::FG_YELLOW),
|
||||
'command' => $this->ansiFormat($command, Console::FG_YELLOW),
|
||||
)));
|
||||
}
|
||||
|
||||
@@ -243,7 +243,7 @@ class HelpController extends Controller
|
||||
$action = $controller->createAction($actionID);
|
||||
if ($action === null) {
|
||||
throw new Exception(Yii::t('yii', 'No help for unknown sub-command "{command}".', array(
|
||||
'{command}' => rtrim($controller->getUniqueId() . '/' . $actionID, '/'),
|
||||
'command' => rtrim($controller->getUniqueId() . '/' . $actionID, '/'),
|
||||
)));
|
||||
}
|
||||
if ($action instanceof InlineAction) {
|
||||
|
||||
@@ -60,7 +60,7 @@ class Controller extends \yii\base\Controller
|
||||
|
||||
if (!empty($missing)) {
|
||||
throw new HttpException(400, Yii::t('yii', 'Missing required parameters: {params}', array(
|
||||
'{params}' => implode(', ', $missing),
|
||||
'params' => implode(', ', $missing),
|
||||
)));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user