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
7e81f9de
Commit
7e81f9de
authored
Jan 31, 2013
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of github.com:laravel/laravel into develop
parents
df6021a2
098c6c62
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
3 deletions
+16
-3
app.php
app/config/app.php
+1
-1
global.php
app/start/global.php
+2
-2
autoload.php
bootstrap/autoload.php
+13
-0
No files found.
app/config/app.php
View file @
7e81f9de
...
...
@@ -142,7 +142,7 @@ return array(
'Auth'
=>
'Illuminate\Support\Facades\Auth'
,
'Blade'
=>
'Illuminate\Support\Facades\Blade'
,
'Cache'
=>
'Illuminate\Support\Facades\Cache'
,
'ClassLoader'
=>
'Illuminate\
Foundation
\ClassLoader'
,
'ClassLoader'
=>
'Illuminate\
Support
\ClassLoader'
,
'Config'
=>
'Illuminate\Support\Facades\Config'
,
'Controller'
=>
'Illuminate\Routing\Controllers\Controller'
,
'Cookie'
=>
'Illuminate\Support\Facades\Cookie'
,
...
...
app/start/global.php
View file @
7e81f9de
...
...
@@ -11,12 +11,12 @@
|
*/
ClassLoader
::
register
(
new
ClassLoader
(
array
(
ClassLoader
::
addDirectories
(
array
(
app_path
()
.
'/controllers'
,
app_path
()
.
'/models'
,
))
)
;
));
/*
|--------------------------------------------------------------------------
...
...
bootstrap/autoload.php
View file @
7e81f9de
...
...
@@ -14,6 +14,19 @@
require
__DIR__
.
'/../vendor/autoload.php'
;
/*
|--------------------------------------------------------------------------
| Register The Laravel Auto Loader
|--------------------------------------------------------------------------
|
| We register an auto-loader "behind" the Composer loader that can load
| model classes on the fly, even if the autoload files have not been
| regenerated for the application. We'll add it to the stack here.
|
*/
Illuminate\Support\ClassLoader
::
register
();
/*
|--------------------------------------------------------------------------
| Register The Workbench Loaders
...
...
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