From 5126afaf8a27098491e64dab7cfce9827cfc2215 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 25 Dec 2018 19:58:14 +0700 Subject: [PATCH] clean up Paths::$viewDirectory property --- app/Config/Paths.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/Paths.php b/app/Config/Paths.php index 2fd1995caa3e..5ea7e1741ec8 100644 --- a/app/Config/Paths.php +++ b/app/Config/Paths.php @@ -73,5 +73,5 @@ class Paths * default this is in `app/Views`. This value * is used when no value is provided to `Services::renderer()`. */ - public $viewDirectory = __DIR__ . '/../../app/Views'; + public $viewDirectory = __DIR__ . '/../Views'; }