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

Commit 275ea82

Browse files
committed
🚑 fixed broken paths
1 parent 3b8c403 commit 275ea82

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

config/paths.php

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

33
return [
4-
"controllersPath" => "App/Controllers",
4+
"controllersPath" => "app/controllers",
55

6-
"modelsPath" => "App/Models",
6+
"modelsPath" => "app/models",
77

8-
"migrationsPath" => "App/Database/Migrations",
8+
"migrationsPath" => "app/database/migrations",
99

10-
"seedsPath" => "App/Database/Seeds",
10+
"seedsPath" => "app/database/seeds",
1111

12-
"factoriesPath" => "App/Database/Factories",
12+
"factoriesPath" => "app/database/factories",
1313

14-
"helpersPath" => "App/Helpers",
14+
"helpersPath" => "app/helpers",
1515

16-
"viewsPath" => "App/Views",
16+
"viewsPath" => "app/views",
1717

18-
"configPath" => "App/Config",
18+
"configPath" => "config",
1919

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

22-
"commandsPath" => "App/Console",
22+
"commandsPath" => "app/console",
2323

24-
"routesPath" => "App/Routes",
24+
"routesPath" => "app/routes",
2525

26-
"libPath" => "Lib",
26+
"libPath" => "lib",
2727

28-
"publicPath" => "public",
28+
"publicPath" => "public",
2929

3030
"databaseStoragePath" => "storage/app/db"
3131
];

0 commit comments

Comments
 (0)