Тесты для AuthorizationForm и кастомного RequiredValidator

В модуль Authserver добавлены хелперы для логирования
Исправлена ошибка в MinecraftAccessKey
Ускорено тестирование всего приложения
This commit is contained in:
ErickSkrauch
2016-08-29 02:17:45 +03:00
parent d37a865e14
commit 9c658f5bd9
9 changed files with 241 additions and 13 deletions

View File

@@ -54,7 +54,7 @@ class MinecraftAccessKey extends ActiveRecord {
}
public function isActual() : bool {
return $this->timestamp + self::LIFETIME >= time();
return $this->updated_at + self::LIFETIME >= time();
}
}