Skip to content

Commit

Permalink
Merge pull request cakephp#5193 from okinaka/3.0-ja
Browse files Browse the repository at this point in the history
  • Loading branch information
chinpei215 authored Aug 21, 2017
2 parents 0a06d92 + 845c66a commit 91d5919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ja/console-and-shells.rst
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ CakePHPのコンソールのフレームワークは ``$this->getOptionParser()`
])->addOption('method', [
'short' => 'm',
'help' => __('The specific method you want help on.')
])->description(__('Lookup doc block comments for classes in CakePHP.'));
])->setDescription(__('Lookup doc block comments for classes in CakePHP.'));
return $parser;
}

Expand Down Expand Up @@ -1209,7 +1209,8 @@ URL となってしまいます。こういったケースでは、ドメイン
use Cake\Mailer\Email;

$email = new Email();
$email->domain('www.example.org');
// 3.4 より前は domain() を使用
$email->setDomain('www.example.org');

これにより生成されるメッセージ ID は有効で、また送信元ドメイン名にも合致したものになります。

Expand Down
2 changes: 1 addition & 1 deletion ja/development/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ Inflection の設定
キャッシュ設定のための :term:`DSN` 文字列を使用して、各環境でこれらのライブラリーを簡単に変更できます。

CakePHP は、環境変数を使ってローカル開発を容易にするために `dotenv
<https://github.com/josegonzalez/dotenv>`_ を活用します。
<https://github.com/josegonzalez/php-dotenv>`_ を活用します。
アプリケーションの中に ``config/.env.default`` があるでしょう。
このファイルを ``config/.env`` にコピーし、値をカスタマイズすることで、
アプリケーションを設定できます。
Expand Down

0 comments on commit 91d5919

Please sign in to comment.