Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
c9fb1c91
Commit
c9fb1c91
authored
Aug 22, 2014
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing a few things. Namespace configuration.
parent
a68933d3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
paths.php
bootstrap/paths.php
+1
-1
namespaces.php
config/namespaces.php
+12
-4
No files found.
bootstrap/paths.php
View file @
c9fb1c91
...
@@ -65,7 +65,7 @@ return array(
...
@@ -65,7 +65,7 @@ return array(
|
|
*/
*/
'co
mmands
'
=>
__DIR__
.
'/../app/Console'
,
'co
nsole
'
=>
__DIR__
.
'/../app/Console'
,
'config'
=>
__DIR__
.
'/../config'
,
'config'
=>
__DIR__
.
'/../config'
,
'controllers'
=>
__DIR__
.
'/../app/Http/Controllers'
,
'controllers'
=>
__DIR__
.
'/../app/Http/Controllers'
,
'database'
=>
__DIR__
.
'/../database'
,
'database'
=>
__DIR__
.
'/../database'
,
...
...
config/namespaces.php
View file @
c9fb1c91
...
@@ -17,15 +17,23 @@ return array(
...
@@ -17,15 +17,23 @@ return array(
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
|
Root Controller Namespace
|
Generator Namespaces
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
|
|
| Th
is namespace will be automatically prepended to URLs generated via
| Th
ese namespaces are utilized by the various class generator Artisan
|
the URL generator for controller actions, allowing for the simple
|
commands. You are free to change them to whatever you wish or not
| a
nd convenient referencing of your namespaced controller class
.
| a
t all. The "app:name" command is the easiest way to set these
.
|
|
*/
*/
'console'
=>
'App\Console\\'
,
'controllers'
=>
'App\\Http\\Controllers\\'
,
'controllers'
=>
'App\\Http\\Controllers\\'
,
'filters'
=>
'App\Http\Filters\\'
,
'providers'
=>
'App\Providers\\'
,
'requests'
=>
'App\Http\Requests\\'
,
);
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment