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
311
Merge Requests
311
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
a4e0f0ec
Commit
a4e0f0ec
authored
Mar 05, 2012
by
Crell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename DrupalApp back to DrupalKernel, since it implements HttpKernelInterface.
parent
d9b452b9
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/DrupalKernel.php
core/lib/Drupal/Core/DrupalKernel.php
+1
-1
index.php
index.php
+2
-2
No files found.
core/lib/Drupal/Core/Drupal
App
.php
→
core/lib/Drupal/Core/Drupal
Kernel
.php
View file @
a4e0f0ec
...
...
@@ -29,7 +29,7 @@
/**
* The DrupalApp class is the core of Drupal itself.
*/
class
Drupal
App
implements
HttpKernelInterface
{
class
Drupal
Kernel
implements
HttpKernelInterface
{
/**
*
...
...
index.php
View file @
a4e0f0ec
<?php
use
Drupal\Core\Drupal
App
;
use
Drupal\Core\Drupal
Kernel
;
use
Symfony\Component\HttpFoundation\Request
;
/**
...
...
@@ -26,5 +26,5 @@
// A request object from the HTTPFoundation to tell us about the request.
$request
=
Request
::
createFromGlobals
();
$kernel
=
new
Drupal
App
();
$kernel
=
new
Drupal
Kernel
();
$kernel
->
handle
(
$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