Исправлена ошибка при попытке отправить сообщение в форму обратной связи, будучи залогиненным

This commit is contained in:
ErickSkrauch
2017-11-01 19:56:23 +03:00
parent 9bdc9173c2
commit 85d109910f
2 changed files with 45 additions and 5 deletions

View File

@ -3,6 +3,7 @@ namespace api\models;
use common\helpers\Error as E;
use api\models\base\ApiForm;
use common\models\Account;
use Yii;
use yii\base\ErrorException;
use yii\base\InvalidConfigException;
@ -58,11 +59,13 @@ class FeedbackForm extends ApiForm {
return true;
}
/**
* @return \common\models\Account|null $account
*/
protected function getAccount() {
return Yii::$app->user->identity;
protected function getAccount(): ?Account {
$identity = Yii::$app->user->identity;
if ($identity === null) {
return null;
}
return $identity->getAccount();
}
}