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
9624d275
Commit
9624d275
authored
Jul 11, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed comment bloat from index.php.
parent
c75f298c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
index.php
public/index.php
+3
-15
No files found.
public/index.php
View file @
9624d275
...
...
@@ -9,11 +9,6 @@
* @link http://laravel.com
*/
// --------------------------------------------------------------
// Set the framework starting time.
// --------------------------------------------------------------
define
(
'LARAVEL_START'
,
microtime
(
true
));
// --------------------------------------------------------------
// Define the framework paths.
// --------------------------------------------------------------
...
...
@@ -86,20 +81,13 @@ if (System\Config::get('session.driver') != '')
// --------------------------------------------------------------
$response
=
System\Route\Filter
::
call
(
'before'
,
array
(),
true
);
// --------------------------------------------------------------
// Only execute the route function if the "before" filter did
// not override by sending a response.
// --------------------------------------------------------------
// ----------------------------------------------------------
// Execute the route function.
// ----------------------------------------------------------
if
(
is_null
(
$response
))
{
// ----------------------------------------------------------
// Route the request to the proper route.
// ----------------------------------------------------------
$route
=
System\Router
::
route
(
Request
::
method
(),
Request
::
uri
());
// ----------------------------------------------------------
// Execute the route function.
// ----------------------------------------------------------
if
(
!
is_null
(
$route
))
{
$response
=
$route
->
call
();
...
...
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