Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
309
Merge Requests
309
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
2d52eeee
Commit
2d52eeee
authored
Feb 28, 2012
by
Crell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move DrupalApp back to being a kernel implementation, since, really, that's what it is.
parent
2dec350a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
core/lib/Drupal/Core/DrupalApp.php
core/lib/Drupal/Core/DrupalApp.php
+2
-2
index.php
index.php
+1
-1
No files found.
core/lib/Drupal/Core/DrupalApp.php
View file @
2d52eeee
...
...
@@ -29,7 +29,7 @@
/**
* The DrupalApp class is the core of Drupal itself.
*/
class
DrupalApp
{
class
DrupalApp
implements
HttpKernelInterface
{
/**
*
...
...
@@ -38,7 +38,7 @@ class DrupalApp {
* @return Response
* The response object to return to the requesting user agent.
*/
function
execute
(
Request
$request
)
{
function
handle
(
Request
$request
,
$type
=
self
::
MASTER_REQUEST
,
$catch
=
true
)
{
try
{
$dispatcher
=
$this
->
getDispatcher
();
...
...
index.php
View file @
2d52eeee
...
...
@@ -27,4 +27,4 @@
$request
=
Request
::
createFromGlobals
();
$kernel
=
new
DrupalApp
();
$kernel
->
execut
e
(
$request
)
->
send
();
$kernel
->
handl
e
(
$request
)
->
send
();
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