From f002567220b9ce9670f4d7fd71701df17c87a86b Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Wed, 9 Mar 2016 18:47:19 +0300 Subject: [PATCH] Removed unnecessary slash --- controllers/SiteController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/SiteController.php b/controllers/SiteController.php index 4ffba24..df1a0d3 100644 --- a/controllers/SiteController.php +++ b/controllers/SiteController.php @@ -54,7 +54,7 @@ class SiteController extends Controller public function actionLogin() { - if (!\Yii::$app->user->isGuest) { + if (!Yii::$app->user->isGuest) { return $this->goHome(); }