diff -u b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php --- b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorCategoryBlock.php @@ -23,7 +23,7 @@ class AggregatorCategoryBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { // By default, the block will contain 10 feed items. diff -u b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php --- b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php @@ -23,7 +23,7 @@ class AggregatorFeedBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { // By default, the block will contain 10 feed items. diff -u b/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php b/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php --- b/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php +++ b/core/modules/block/custom_block/lib/Drupal/custom_block/Plugin/Block/CustomBlockBlock.php @@ -75,7 +75,7 @@ } /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php --- b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php +++ b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestCacheBlock.php @@ -22,7 +22,7 @@ class TestCacheBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} * * Sets a different caching strategy for testing purposes. */ diff -u b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestXSSTitleBlock.php b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestXSSTitleBlock.php --- b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestXSSTitleBlock.php +++ b/core/modules/block/tests/modules/block_test/lib/Drupal/block_test/Plugin/Block/TestXSSTitleBlock.php @@ -20,7 +20,7 @@ class TestXSSTitleBlock extends TestCacheBlock { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} * * Sets a different caching strategy for testing purposes. */ diff -u b/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php b/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php --- b/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php +++ b/core/modules/book/lib/Drupal/book/Plugin/Block/BookNavigationBlock.php @@ -22,7 +22,7 @@ class BookNavigationBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php b/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php --- b/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php +++ b/core/modules/comment/lib/Drupal/comment/Plugin/Block/RecentCommentsBlock.php @@ -22,7 +22,7 @@ class RecentCommentsBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/forum/lib/Drupal/forum/Plugin/Block/ForumBlockBase.php b/core/modules/forum/lib/Drupal/forum/Plugin/Block/ForumBlockBase.php --- b/core/modules/forum/lib/Drupal/forum/Plugin/Block/ForumBlockBase.php +++ b/core/modules/forum/lib/Drupal/forum/Plugin/Block/ForumBlockBase.php @@ -15,7 +15,7 @@ abstract class ForumBlockBase extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php b/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php --- b/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php +++ b/core/modules/node/lib/Drupal/node/Plugin/Block/RecentContentBlock.php @@ -22,7 +22,7 @@ class RecentContentBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php b/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php --- b/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php +++ b/core/modules/node/lib/Drupal/node/Plugin/Block/SyndicateBlock.php @@ -22,7 +22,7 @@ class SyndicateBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php b/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php --- b/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php +++ b/core/modules/statistics/lib/Drupal/statistics/Plugin/Block/StatisticsPopularBlock.php @@ -43,7 +43,7 @@ protected $last_list; /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php b/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php --- b/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php +++ b/core/modules/user/lib/Drupal/user/Plugin/Block/UserNewBlock.php @@ -22,7 +22,7 @@ class UserNewBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array( diff -u b/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php b/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php --- b/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php +++ b/core/modules/user/lib/Drupal/user/Plugin/Block/UserOnlineBlock.php @@ -25,7 +25,7 @@ class UserOnlineBlock extends BlockBase { /** - * Overrides \Drupal\block\BlockBase::settings(). + * {@inheritdoc} */ public function getDefaultConfiguration() { return array(