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
3780da4a
Commit
3780da4a
authored
Feb 03, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add comment to boostrap.
parent
d02f4deb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
laravel.php
laravel/laravel.php
+10
-4
No files found.
laravel/laravel.php
View file @
3780da4a
...
...
@@ -149,10 +149,10 @@ foreach (Bundle::all() as $bundle => $config)
}
/**
*
Route the request to the proper route in the application. If a
*
route is found, the route will be called via the request class
*
static property. If no route is found, the 404 response will
*
be returned to the browser
.
*
If the requset URI has too many segments, we will bomb out of
*
the request. This is too avoid potential DDoS attacks against
*
the framework by overloading the controller lookup method
*
with thousands of segments
.
*/
$uri
=
URI
::
current
();
...
...
@@ -161,6 +161,12 @@ if (count(URI::$segments) > 15)
throw
new
\Exception
(
"Invalid request. Too many URI segments."
);
}
/**
* Route the request to the proper route in the application. If a
* route is found, the route will be called via the request class
* static property. If no route is found, the 404 response will
* be returned to the browser.
*/
Request
::
$route
=
Routing\Router
::
route
(
Request
::
method
(),
$uri
);
if
(
is_null
(
Request
::
$route
))
...
...
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