-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Criado arquivo de configuração para o código legado
- Loading branch information
1 parent
50344a0
commit b898988
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Legacy Code | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value determines which application is running. Default is the new | ||
| version using Laravel structure. Another case your application is running | ||
| using i-Educar legacy code. | ||
| | ||
*/ | ||
|
||
'code' => env('LEGACY_CODE', true), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Display Errors | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value determines if the errors that legacy code throws is showed for | ||
| user in debug mode. | ||
| | ||
*/ | ||
|
||
'display_errors' => env('LEGACY_DISPLAY_ERRORS', false), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Path | ||
|-------------------------------------------------------------------------- | ||
| | ||
| This value determines the path of the legacy code. | ||
| | ||
*/ | ||
|
||
'path' => env('LEGACY_PATH', 'ieducar'), | ||
|
||
]; |