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

@ -103,7 +103,7 @@ class RecursiveExtensionFilterIterator extends \RecursiveFilterIterator {
}
/**
* Overrides \RecursiveFilterIterator::getChildren().
* {@inheritdoc}
*/
public function getChildren() {
$filter = parent::getChildren();
@ -113,7 +113,7 @@ class RecursiveExtensionFilterIterator extends \RecursiveFilterIterator {
}
/**
* Implements \FilterIterator::accept().
* {@inheritdoc}
*/
public function accept() {
$name = $this->current()->getFilename();

View file

@ -185,7 +185,7 @@ class Extension implements \Serializable {
}
/**
* Implements Serializable::unserialize().
* {@inheritdoc}
*/
public function unserialize($data) {
$data = unserialize($data);

View file

@ -588,17 +588,17 @@ function hook_install_tasks_alter(&$tasks, $install_state) {
* @param array $sandbox
* Stores information for batch updates. See above for more information.
*
* @return string|null
* Optionally, update hooks may return a translated string that will be
* displayed to the user after the update has completed. If no message is
* returned, no message will be presented to the user.
*
* @throws \Drupal\Core\Utility\UpdateException|PDOException
* In case of error, update hooks should throw an instance of
* Drupal\Core\Utility\UpdateException with a meaningful message for the user.
* If a database query fails for whatever reason, it will throw a
* PDOException.
*
* @return string|null
* Optionally, update hooks may return a translated string that will be
* displayed to the user after the update has completed. If no message is
* returned, no message will be presented to the user.
*
* @ingroup update_api
*
* @see batch
@ -683,17 +683,17 @@ function hook_update_N(&$sandbox) {
* @param array $sandbox
* Stores information for batch updates. See above for more information.
*
* @return string|null
* Optionally, hook_post_update_NAME() hooks may return a translated string
* that will be displayed to the user after the update has completed. If no
* message is returned, no message will be presented to the user.
*
* @throws \Drupal\Core\Utility\UpdateException|PDOException
* In case of error, update hooks should throw an instance of
* \Drupal\Core\Utility\UpdateException with a meaningful message for the
* user. If a database query fails for whatever reason, it will throw a
* PDOException.
*
* @return string|null
* Optionally, hook_post_update_NAME() hooks may return a translated string
* that will be displayed to the user after the update has completed. If no
* message is returned, no message will be presented to the user.
*
* @ingroup update_api
*
* @see hook_update_N()