Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit 5ecde36

Browse files
committed
🐛 fixed broken config paths
1 parent e22a279 commit 5ecde36

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

Config/aloe.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"helpers_path" => "/App/Helpers",
1111
"views_path" => "/App/Views",
1212
"config_path" => "/App/Config",
13-
"storage_path" => "/App/storage",
13+
"storage_path" => "/storage",
1414
"commands_path" => "/App/Console",
1515
"routes_path" => "/App/Routes",
1616
"lib_path" => "/Lib",

Config/paths.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<?php
22

33
return [
4-
"controllers_path" => "App/Controllers",
4+
"controllers_path" => "App/Controllers",
55

6-
"models_path" => "App/Models",
6+
"models_path" => "App/Models",
77

8-
"migrations_path" => "App/Database/Migrations",
8+
"migrations_path" => "App/Database/Migrations",
99

10-
"seeds_path" => "App/Database/Seeds",
10+
"seeds_path" => "App/Database/Seeds",
1111

12-
"factories_path" => "App/Database/Factories",
12+
"factories_path" => "App/Database/Factories",
1313

14-
"helpers_path" => "App/Helpers",
14+
"helpers_path" => "App/Helpers",
1515

16-
"views_path" => "App/Views",
16+
"views_path" => "App/Views",
1717

18-
"config_path" => "App/Config",
18+
"config_path" => "App/Config",
1919

20-
"storage_path" => "storage",
20+
"storage_path" => "storage",
2121

22-
"commands_path" => "App/Console",
22+
"commands_path" => "App/Console",
2323

24-
"routes_path" => "App/Routes",
24+
"routes_path" => "App/Routes",
2525

26-
"lib_path" => "Lib",
26+
"lib_path" => "Lib",
2727

28-
"public_path" => "public",
28+
"public_path" => "public",
2929
];

0 commit comments

Comments
 (0)