Update to Drupal 8.0.0-rc3. For more information, see https://www.drupal.org/node/2608078

This commit is contained in:
Pantheon Automation 2015-11-04 11:11:27 -08:00 committed by Greg Anderson
parent 6419a031d7
commit 4afb23bbd3
762 changed files with 20080 additions and 6368 deletions

View file

@ -16,7 +16,7 @@ use Drupal\Core\Config\Config;
class ConfigTestStorage extends ConfigEntityStorage {
/**
* Overrides \Drupal\Core\Config\Entity\ConfigEntityStorage::importCreate().
* {@inheritdoc}
*/
public function importCreate($name, Config $new_config, Config $old_config) {
// Set a global value we can check in test code.
@ -26,7 +26,7 @@ class ConfigTestStorage extends ConfigEntityStorage {
}
/**
* Overrides \Drupal\Core\Config\Entity\ConfigEntityStorage::importUpdate().
* {@inheritdoc}
*/
public function importUpdate($name, Config $new_config, Config $old_config) {
// Set a global value we can check in test code.
@ -36,7 +36,7 @@ class ConfigTestStorage extends ConfigEntityStorage {
}
/**
* Overrides \Drupal\Core\Config\Entity\ConfigEntityStorage::importDelete().
* {@inheritdoc}
*/
public function importDelete($name, Config $new_config, Config $old_config) {
// Set a global value we can check in test code.

View file

@ -80,7 +80,7 @@ class ConfigTest extends ConfigEntityBase implements ConfigTestInterface {
protected $protected_property;
/**
* Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::sort().
* {@inheritdoc}
*/
public static function sort(ConfigEntityInterface $a, ConfigEntityInterface $b) {
\Drupal::state()->set('config_entity_sort', TRUE);