commit c9b10c6e04a9dc86893b2b35d6601fa0e9df0b52 Author: Pieter Frenssen Date: Sun Mar 30 09:04:24 2014 +0200 2227973-9 diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTranslationHandler.php b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTranslationHandler.php index 057de58..2bdd7f0 100644 --- a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTranslationHandler.php +++ b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockTranslationHandler.php @@ -16,7 +16,7 @@ class CustomBlockTranslationHandler extends ContentTranslationHandler { /** - * Overrides ContentTranslationHandler::entityFormAlter(). + * {@inheritdoc} */ public function entityFormAlter(array &$form, array &$form_state, EntityInterface $entity) { parent::entityFormAlter($form, $form_state, $entity); @@ -33,7 +33,7 @@ public function entityFormAlter(array &$form, array &$form_state, EntityInterfac } /** - * Overrides ContentTranslationHandler::entityFormTitle(). + * {@inheritdoc} */ protected function entityFormTitle(EntityInterface $entity) { $block_type = entity_load('custom_block_type', $entity->bundle()); diff --git a/core/modules/comment/lib/Drupal/comment/CommentTranslationHandler.php b/core/modules/comment/lib/Drupal/comment/CommentTranslationHandler.php index d195dc3..aa796b1 100644 --- a/core/modules/comment/lib/Drupal/comment/CommentTranslationHandler.php +++ b/core/modules/comment/lib/Drupal/comment/CommentTranslationHandler.php @@ -1,9 +1,8 @@ $entity->label())); diff --git a/core/modules/comment/lib/Drupal/comment/Entity/Comment.php b/core/modules/comment/lib/Drupal/comment/Entity/Comment.php index 54c364f..f9ee0fc 100644 --- a/core/modules/comment/lib/Drupal/comment/Entity/Comment.php +++ b/core/modules/comment/lib/Drupal/comment/Entity/Comment.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\comment\Entity\Comment. + * Contains \Drupal\comment\Entity\Comment. */ namespace Drupal\comment\Entity; diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandler.php b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandler.php index 107dfb2..26a1d2b 100644 --- a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandler.php +++ b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandler.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\content_translation\ContentTranslationHandler. + * Contains \Drupal\content_translation\ContentTranslationHandler. */ namespace Drupal\content_translation; diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandlerInterface.php b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandlerInterface.php index b925ddf..c41fd27 100644 --- a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandlerInterface.php +++ b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationHandlerInterface.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\content_translation\ContentTranslationHandlerInterface. + * Contains \Drupal\content_translation\ContentTranslationHandlerInterface. */ namespace Drupal\content_translation; diff --git a/core/modules/node/lib/Drupal/node/Entity/Node.php b/core/modules/node/lib/Drupal/node/Entity/Node.php index f5e658b..3584810 100644 --- a/core/modules/node/lib/Drupal/node/Entity/Node.php +++ b/core/modules/node/lib/Drupal/node/Entity/Node.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\node\Entity\Node. + * Contains \Drupal\node\Entity\Node. */ namespace Drupal\node\Entity; diff --git a/core/modules/node/lib/Drupal/node/NodeTranslationHandler.php b/core/modules/node/lib/Drupal/node/NodeTranslationHandler.php index a3ee012..21ab7e0 100644 --- a/core/modules/node/lib/Drupal/node/NodeTranslationHandler.php +++ b/core/modules/node/lib/Drupal/node/NodeTranslationHandler.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\node\NodeTranslationHandler. + * Contains \Drupal\node\NodeTranslationHandler. */ namespace Drupal\node; @@ -16,7 +16,7 @@ class NodeTranslationHandler extends ContentTranslationHandler { /** - * Overrides ContentTranslationHandler::entityFormAlter(). + * {@inheritdoc} */ public function entityFormAlter(array &$form, array &$form_state, EntityInterface $entity) { parent::entityFormAlter($form, $form_state, $entity); @@ -63,7 +63,7 @@ public function entityFormAlter(array &$form, array &$form_state, EntityInterfac } /** - * Overrides ContentTranslationHandler::entityFormTitle(). + * {@inheritdoc} */ protected function entityFormTitle(EntityInterface $entity) { $type_name = node_get_type_label($entity); @@ -71,7 +71,7 @@ protected function entityFormTitle(EntityInterface $entity) { } /** - * Overrides ContentTranslationHandler::entityFormEntityBuild(). + * {@inheritdoc} */ public function entityFormEntityBuild($entity_type, EntityInterface $entity, array $form, array &$form_state) { if (isset($form_state['values']['content_translation'])) { diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTest.php b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTest.php index c5837c3..08e36ff 100644 --- a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTest.php +++ b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTest.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\entity_test\Entity\EntityTest. + * Contains \Drupal\entity_test\Entity\EntityTest. */ namespace Drupal\entity_test\Entity; diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestBaseFieldDisplay.php b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestBaseFieldDisplay.php index e86c8f1..cddccc6 100644 --- a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestBaseFieldDisplay.php +++ b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestBaseFieldDisplay.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\entity_test\Entity\EntityTestBaseFieldDisplay. + * Contains \Drupal\entity_test\Entity\EntityTestBaseFieldDisplay. */ namespace Drupal\entity_test\Entity; diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMul.php b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMul.php index d1f0499..c38e806 100644 --- a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMul.php +++ b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMul.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\entity_test\Entity\EntityTestMul. + * Contains \Drupal\entity_test\Entity\EntityTestMul. */ namespace Drupal\entity_test\Entity; diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMulRev.php b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMulRev.php index f4f18a6..43c4ac5 100644 --- a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMulRev.php +++ b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestMulRev.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\entity_test\Entity\EntityTestMulRev. + * Contains \Drupal\entity_test\Entity\EntityTestMulRev. */ namespace Drupal\entity_test\Entity; diff --git a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestRev.php b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestRev.php index 573459b..5cac25b 100644 --- a/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestRev.php +++ b/core/modules/system/tests/modules/entity_test/lib/Drupal/entity_test/Entity/EntityTestRev.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\entity_test\Entity\EntityTestRev. + * Contains \Drupal\entity_test\Entity\EntityTestRev. */ namespace Drupal\entity_test\Entity; diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Term.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Term.php index 8c46821..aa94802 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Term.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Entity/Term.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\taxonomy\Entity\Term. + * Contains \Drupal\taxonomy\Entity\Term. */ namespace Drupal\taxonomy\Entity; diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermTranslationHandler.php b/core/modules/taxonomy/lib/Drupal/taxonomy/TermTranslationHandler.php index 33492c9..63b9318 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/TermTranslationHandler.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/TermTranslationHandler.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\taxonomy\TermTranslationHandler. + * Contains \Drupal\taxonomy\TermTranslationHandler. */ namespace Drupal\taxonomy; @@ -16,7 +16,7 @@ class TermTranslationHandler extends ContentTranslationHandler { /** - * Overrides ContentTranslationHandler::entityFormAlter(). + * {@inheritdoc} */ public function entityFormAlter(array &$form, array &$form_state, EntityInterface $entity) { parent::entityFormAlter($form, $form_state, $entity); diff --git a/core/modules/user/lib/Drupal/user/Entity/User.php b/core/modules/user/lib/Drupal/user/Entity/User.php index b3f9e09..739838d 100644 --- a/core/modules/user/lib/Drupal/user/Entity/User.php +++ b/core/modules/user/lib/Drupal/user/Entity/User.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\user\Entity\User. + * Contains \Drupal\user\Entity\User. */ namespace Drupal\user\Entity; diff --git a/core/modules/user/lib/Drupal/user/ProfileTranslationHandler.php b/core/modules/user/lib/Drupal/user/ProfileTranslationHandler.php index 7d03a2f..035424b 100644 --- a/core/modules/user/lib/Drupal/user/ProfileTranslationHandler.php +++ b/core/modules/user/lib/Drupal/user/ProfileTranslationHandler.php @@ -2,7 +2,7 @@ /** * @file - * Definition of Drupal\user\ProfileTranslationHandler. + * Contains \Drupal\user\ProfileTranslationHandler. */ namespace Drupal\user; @@ -16,7 +16,7 @@ class ProfileTranslationHandler extends ContentTranslationHandler { /** - * Overrides ContentTranslationHandler::entityFormAlter(). + * {@inheritdoc} */ public function entityFormAlter(array &$form, array &$form_state, EntityInterface $entity) { parent::entityFormAlter($form, $form_state, $entity);