Skip to content

Commit

Permalink
Merge pull request #5 from stephenjude/develop
Browse files Browse the repository at this point in the history
Remove the use of .env variable in the config file
  • Loading branch information
stephenjude authored Sep 4, 2020
2 parents 3617d2b + 573b252 commit faa7210
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ return [
|
*/

'class_namespace' => env('CLASS_NAMESPACE', ''),
'class_namespace' => '',


/*
Expand All @@ -92,7 +92,7 @@ return [
|
*/

'abstract_class_namespace' => env('ABSTRACT_CLASS_NAMESPACE', ''),
'abstract_class_namespace' => '',


/*
Expand All @@ -105,7 +105,7 @@ return [
|
*/

'interface_namespace' => env('INTERFACE_NAMESPACE', '\Contracts'),
'interface_namespace' => '\Contracts',


/*
Expand All @@ -118,7 +118,7 @@ return [
|
*/

'trait_namespace' => env('TRAIT_NAMESPACE', '\Traits'),
'trait_namespace' => '\Traits',
];
```

Expand Down
8 changes: 4 additions & 4 deletions config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|
*/

'class_namespace' => env('CLASS_NAMESPACE', ''),
'class_namespace' => '',


/*
Expand All @@ -24,7 +24,7 @@
|
*/

'abstract_class_namespace' => env('ABSTRACT_CLASS_NAMESPACE', ''),
'abstract_class_namespace' => '',


/*
Expand All @@ -37,7 +37,7 @@
|
*/

'interface_namespace' => env('INTERFACE_NAMESPACE', '\Contracts'),
'interface_namespace' => '\Contracts',


/*
Expand All @@ -50,5 +50,5 @@
|
*/

'trait_namespace' => env('TRAIT_NAMESPACE', '\Traits'),
'trait_namespace' => '\Traits',
];

0 comments on commit faa7210

Please sign in to comment.