Update to Drupal 8.0.2. For more information, see https://www.drupal.org/drupal-8.0.2-release-notes
This commit is contained in:
parent
1a0e9d9fac
commit
a6b049dd05
538 changed files with 5247 additions and 1594 deletions
|
@ -54,7 +54,7 @@ class StableLibraryOverrideTest extends KernelTestBase {
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp() {
|
||||
protected function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
$this->themeManager = $this->container->get('theme.manager');
|
||||
|
|
|
@ -40,7 +40,7 @@ class StableThemeTest extends KernelTestBase {
|
|||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function setUp() {
|
||||
protected function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
$this->themeHandler = $this->container->get('theme_handler');
|
||||
|
|
|
@ -40,7 +40,7 @@ class ThemeTest extends WebTestBase {
|
|||
* Render arrays that use a render element and templates (and hence call
|
||||
* template_preprocess()) must ensure the attributes at different occasions
|
||||
* are all merged correctly:
|
||||
* - $variables['attributes'] as passed in to _theme()
|
||||
* - $variables['attributes'] as passed in to the theme hook implementation.
|
||||
* - the render element's #attributes
|
||||
* - any attributes set in the template's preprocessing function
|
||||
*/
|
||||
|
@ -57,7 +57,7 @@ class ThemeTest extends WebTestBase {
|
|||
}
|
||||
|
||||
/**
|
||||
* Test that _theme() returns expected data types.
|
||||
* Test that ThemeManager renders the expected data types.
|
||||
*/
|
||||
function testThemeDataTypes() {
|
||||
// theme_test_false is an implemented theme hook so \Drupal::theme() service
|
||||
|
|
Reference in a new issue