Phpstan fix (#465)

phpstan level 2: services and i18n
This commit is contained in:
Tõnis Ormisson
2022-08-11 11:27:04 +03:00
committed by GitHub
parent 339b9f1bbc
commit 368563dcc0
11 changed files with 13 additions and 48 deletions

View File

@ -226,7 +226,7 @@ class SessionHistoryDecorator extends Session
return $this->session->writeSession($id, $data) &&
(
false === $this->getModule()->enableSessionHistory ||
$this->getDb()->transaction(function () use ($id, $data) {
$this->getDb()->transaction(function () {
if (Yii::$app->user->getIsGuest()) {
return true;
}
@ -278,7 +278,7 @@ class SessionHistoryDecorator extends Session
return $this->session->gcSession($maxLifetime) &&
(
false === $this->getModule()->enableSessionHistory ||
$this->getDb()->transaction(function () use ($maxLifetime) {
$this->getDb()->transaction(function () {
$this->getDb()->createCommand()->update(
$this->sessionHistoryTable,
$this->condition->inactiveData(),