summaryrefslogtreecommitdiffstatshomepage
path: root/index.php
diff options
context:
space:
mode:
authorLarry Garfield <larry@garfieldtech.com>2012-02-23 23:01:18 -0600
committerLarry Garfield <larry@garfieldtech.com>2012-02-23 23:01:18 -0600
commit2bc27d0fb073b34e3509d529e200113e45b094fe (patch)
tree1349b4ea0898cb790b2cbf8948cc3e650c8e2520 /index.php
parent251d38bd84b5c06c939a3c6fda9fd5b5e4027703 (diff)
downloaddrupal-2bc27d0fb073b34e3509d529e200113e45b094fe.tar.gz
drupal-2bc27d0fb073b34e3509d529e200113e45b094fe.zip
Move namespace imports to the same place.
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/index.php b/index.php
index 624c62a420c..759fd5c3966 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,7 @@
<?php
use Drupal\Core\DrupalApp;
+use Symfony\Component\HttpFoundation\Request;
/**
* @file
@@ -18,8 +19,6 @@ use Drupal\Core\DrupalApp;
*/
define('DRUPAL_ROOT', getcwd());
-use Symfony\Component\HttpFoundation\Request;
-
// Bootstrap the lowest level of what we need.
require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);