diff options
author | Larry Garfield <larry@garfieldtech.com> | 2012-02-23 23:01:18 -0600 |
---|---|---|
committer | Larry Garfield <larry@garfieldtech.com> | 2012-02-23 23:01:18 -0600 |
commit | 2bc27d0fb073b34e3509d529e200113e45b094fe (patch) | |
tree | 1349b4ea0898cb790b2cbf8948cc3e650c8e2520 /index.php | |
parent | 251d38bd84b5c06c939a3c6fda9fd5b5e4027703 (diff) | |
download | drupal-2bc27d0fb073b34e3509d529e200113e45b094fe.tar.gz drupal-2bc27d0fb073b34e3509d529e200113e45b094fe.zip |
Move namespace imports to the same place.
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
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); |