Commit 6507e2e3 by Carsten Brandt

applied new style of Yii::t params to all occurences

parent 5d6bad5f
......@@ -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),
)));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment