- Patch #1552744 by Rob Loach, effulgentsia, sun: Fixed Bootstrap for the Dependency Injection Container and make sure SimpleTest abides to it.
parent
e971776ba4
commit
b332a85b3c
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Definition of Drupal\Core\DependencyInjection\Container.
|
||||
*/
|
||||
|
||||
namespace Drupal\Core\DependencyInjection;
|
||||
|
||||
use Symfony\Component\DependencyInjection\ContainerBuilder as BaseContainerBuilder;
|
||||
|
||||
/**
|
||||
* Drupal's dependency injection container.
|
||||
*/
|
||||
class ContainerBuilder extends BaseContainerBuilder {
|
||||
|
||||
/**
|
||||
* Registers the base Drupal services for the dependency injection container.
|
||||
*/
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
|
||||
// An interface language always needs to be available for t() and other
|
||||
// functions. This default is overridden by drupal_language_initialize()
|
||||
// during language negotiation.
|
||||
$this->register(LANGUAGE_TYPE_INTERFACE, 'Drupal\\Core\\Language\\Language');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue