Skip to content

Commit 936f807

Browse files
authored
Merge pull request #1626 from samsonasik/clean-up-paths-viewdirectory
WIP clean up Paths::$viewDirectory property
2 parents 98a49a4 + 6034779 commit 936f807

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/Config/Paths.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Paths
3535
*
3636
* NO TRAILING SLASH!
3737
*/
38-
public $appDirectory = __DIR__ . '/../../app';
38+
public $appDirectory = __DIR__ . '/..';
3939

4040
/*
4141
* ---------------------------------------------------------------
@@ -73,5 +73,5 @@ class Paths
7373
* default this is in `app/Views`. This value
7474
* is used when no value is provided to `Services::renderer()`.
7575
*/
76-
public $viewDirectory = __DIR__ . '/../../app/Views';
76+
public $viewDirectory = __DIR__ . '/../Views';
7777
}

0 commit comments

Comments
 (0)