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
8a5f18e1
Commit
8a5f18e1
authored
Feb 06, 2013
by
Ben Corlett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moving start.php to bootstrap/start.php to collate all bootstrapping files.
Signed-off-by:
Ben Corlett
<
bencorlett@me.com
>
parent
106d3b72
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
TestCase.php
app/tests/TestCase.php
+2
-2
artisan
artisan
+2
-2
autoload.php
bootstrap/autoload.php
+1
-1
start.php
bootstrap/start.php
+3
-3
index.php
public/index.php
+1
-1
No files found.
app/tests/TestCase.php
View file @
8a5f18e1
...
@@ -13,7 +13,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase {
...
@@ -13,7 +13,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase {
$testEnvironment
=
'testing'
;
$testEnvironment
=
'testing'
;
return
require
__DIR__
.
'/../../start.php'
;
return
require
__DIR__
.
'/../../
bootstrap/
start.php'
;
}
}
}
}
artisan
View file @
8a5f18e1
...
@@ -27,7 +27,7 @@ require __DIR__.'/bootstrap/autoload.php';
...
@@ -27,7 +27,7 @@ require __DIR__.'/bootstrap/autoload.php';
|
|
*/
*/
$app
=
require_once
__DIR__
.
'/start.php'
;
$app
=
require_once
__DIR__
.
'/
bootstrap/
start.php'
;
$app
->
boot
();
$app
->
boot
();
...
...
bootstrap/autoload.php
View file @
8a5f18e1
start.php
→
bootstrap/
start.php
View file @
8a5f18e1
...
@@ -24,9 +24,9 @@ $app = new Illuminate\Foundation\Application;
...
@@ -24,9 +24,9 @@ $app = new Illuminate\Foundation\Application;
|
|
*/
*/
$app
->
instance
(
'path'
,
$appPath
=
__DIR__
.
'/app'
);
$app
->
instance
(
'path'
,
$appPath
=
__DIR__
.
'/
../
app'
);
$app
->
instance
(
'path.base'
,
__DIR__
);
$app
->
instance
(
'path.base'
,
__DIR__
.
'/..'
);
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
public/index.php
View file @
8a5f18e1
...
@@ -34,7 +34,7 @@ require __DIR__.'/../bootstrap/autoload.php';
...
@@ -34,7 +34,7 @@ require __DIR__.'/../bootstrap/autoload.php';
|
|
*/
*/
$app
=
require_once
__DIR__
.
'/../start.php'
;
$app
=
require_once
__DIR__
.
'/../
bootstrap/
start.php'
;
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
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