Move namespace imports to the same place.
parent
251d38bd84
commit
2bc27d0fb0
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Drupal\Core\DrupalApp;
|
use Drupal\Core\DrupalApp;
|
||||||
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
|
@ -18,8 +19,6 @@ use Drupal\Core\DrupalApp;
|
||||||
*/
|
*/
|
||||||
define('DRUPAL_ROOT', getcwd());
|
define('DRUPAL_ROOT', getcwd());
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
|
||||||
|
|
||||||
// Bootstrap the lowest level of what we need.
|
// Bootstrap the lowest level of what we need.
|
||||||
require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc';
|
require_once DRUPAL_ROOT . '/core/includes/bootstrap.inc';
|
||||||
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
|
||||||
|
|
Loading…
Reference in New Issue