diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 5052611c85980d59df62a215c2cf8765214dc72d..872ad385741033de35045d435652915b994fee8b 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1084,7 +1084,7 @@ function install_verify_completed_task() { * The site path. * * @return bool - * TRUE if there are no database errors. + * TRUE if there are no database errors. */ function install_verify_database_settings($site_path) { if ($database = Database::getConnectionInfo()) { diff --git a/core/includes/install.inc b/core/includes/install.inc index 88ca1e2add46a65d1f73d1a7e06e9e13b3650436..f8008b3eda6bb4b24dfce91b70074baf5898b663 100644 --- a/core/includes/install.inc +++ b/core/includes/install.inc @@ -115,8 +115,8 @@ function drupal_install_profile_distribution_name() { * Loads the installation profile, extracting its defined version. * * @return string Distribution version defined in the profile's .info.yml file. - * Defaults to \Drupal::VERSION if no version is explicitly provided - * by the installation profile. + * Defaults to \Drupal::VERSION if no version is explicitly provided + * by the installation profile. * * @see install_profile_info() */ @@ -139,7 +139,7 @@ function drupal_install_profile_distribution_version() { * Detects all supported databases that are compiled into PHP. * * @return - * An array of database types compiled into PHP. + * An array of database types compiled into PHP. */ function drupal_detect_database_types() { $databases = drupal_get_database_types(); @@ -724,7 +724,7 @@ function drupal_verify_install_file($file, $mask = NULL, $type = 'file') { * (optional) Whether to output messages. Defaults to TRUE. * * @return - * TRUE/FALSE whether or not the directory was successfully created. + * TRUE/FALSE whether or not the directory was successfully created. */ function drupal_install_mkdir($file, $mask, $message = TRUE) { $mod = 0; @@ -773,7 +773,7 @@ function drupal_install_mkdir($file, $mask, $message = TRUE) { * (optional) Whether to output messages. Defaults to TRUE. * * @return - * TRUE/FALSE whether or not we were able to fix the file's permissions. + * TRUE/FALSE whether or not we were able to fix the file's permissions. */ function drupal_install_fix_file($file, $mask, $message = TRUE) { // If $file does not exist, fileperms() issues a PHP warning. diff --git a/core/includes/update.inc b/core/includes/update.inc index a07595e63c1a03ee217c6e539ef53cf3b2d0a8e0..2c020db6b2fb7b8dc3272f5bd75717d321a3b7d0 100644 --- a/core/includes/update.inc +++ b/core/includes/update.inc @@ -65,7 +65,7 @@ function update_check_incompatibility($name, $type = 'module') { * Returns whether the minimum schema requirement has been satisfied. * * @return array - * A requirements info array. + * A requirements info array. */ function update_system_schema_requirements() { $requirements = array(); diff --git a/core/lib/Drupal/Component/Annotation/Plugin.php b/core/lib/Drupal/Component/Annotation/Plugin.php index 9ec9b9022088b2bc737bfc6a4c9bcf4ff57cd546..29f36759c3d0005c60a50aff5d4465e51f4e6409 100644 --- a/core/lib/Drupal/Component/Annotation/Plugin.php +++ b/core/lib/Drupal/Component/Annotation/Plugin.php @@ -49,7 +49,7 @@ public function __construct($values) { * The annotation array. * * @return array - * The parsed annotation as a definition. + * The parsed annotation as a definition. */ protected function parse(array $values) { $definitions = array(); diff --git a/core/lib/Drupal/Core/Cache/Cache.php b/core/lib/Drupal/Core/Cache/Cache.php index 06b4ac2f26c9d20fc3a43f9e8e34213619b9742c..2d0c220750c419234a7c1419ad44f8e7750ca138 100644 --- a/core/lib/Drupal/Core/Cache/Cache.php +++ b/core/lib/Drupal/Core/Cache/Cache.php @@ -149,7 +149,7 @@ public static function invalidateTags(array $tags) { * Gets all cache bin services. * * @return array - * An array of cache backend objects keyed by cache bins. + * An array of cache backend objects keyed by cache bins. */ public static function getBins() { $bins = array(); diff --git a/core/lib/Drupal/Core/Cache/CacheableDependencyInterface.php b/core/lib/Drupal/Core/Cache/CacheableDependencyInterface.php index 2bb89ba90cde21257860e8c72904803cb7227fc5..cbce6aac6a44ae380503e872d58862757c646690 100644 --- a/core/lib/Drupal/Core/Cache/CacheableDependencyInterface.php +++ b/core/lib/Drupal/Core/Cache/CacheableDependencyInterface.php @@ -37,7 +37,7 @@ public function getCacheContexts(); * When this object is modified, these cache tags will be invalidated. * * @return string[] - * A set of cache tags. + * A set of cache tags. */ public function getCacheTags(); diff --git a/core/lib/Drupal/Core/Config/StorageInterface.php b/core/lib/Drupal/Core/Config/StorageInterface.php index 49bc91676d61c35a229e278a2200bc548e4dc0d4..18a7126334943ae504b497a482261e7f1dc420c8 100644 --- a/core/lib/Drupal/Core/Config/StorageInterface.php +++ b/core/lib/Drupal/Core/Config/StorageInterface.php @@ -93,28 +93,28 @@ public function rename($name, $new_name); /** * Encodes configuration data into the storage-specific format. * + * This is a publicly accessible static method to allow for alternative + * usages in data conversion scripts and also tests. + * * @param array $data * The configuration data to encode. * * @return string * The encoded configuration data. - * - * This is a publicly accessible static method to allow for alternative - * usages in data conversion scripts and also tests. */ public function encode($data); /** * Decodes configuration data from the storage-specific format. * + * This is a publicly accessible static method to allow for alternative + * usages in data conversion scripts and also tests. + * * @param string $raw * The raw configuration data string to decode. * * @return array * The decoded configuration data as an associative array. - * - * This is a publicly accessible static method to allow for alternative - * usages in data conversion scripts and also tests. */ public function decode($raw); diff --git a/core/lib/Drupal/Core/Extension/module.api.php b/core/lib/Drupal/Core/Extension/module.api.php index 37f8b7759539ce995808f7cfecc74e246f5bf0e4..b732387630361b0a40e22d53f8a979196a2cd4aa 100644 --- a/core/lib/Drupal/Core/Extension/module.api.php +++ b/core/lib/Drupal/Core/Extension/module.api.php @@ -72,6 +72,8 @@ * frequently called should be left in the main module file so that they are * always available. * + * See system_hook_info() for all hook groups defined by Drupal core. + * * @return * An associative array whose keys are hook names and whose values are an * associative array containing: @@ -79,8 +81,6 @@ * system will determine whether a file with the name $module.$group.inc * exists, and automatically load it when required. * - * See system_hook_info() for all hook groups defined by Drupal core. - * * @see hook_hook_info_alter() */ function hook_hook_info() { diff --git a/core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php b/core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php index ab73598267462f61b22d4d23a363c5f5da95e2e0..05ba8a83d20a926a983ff51ad098aad4abde890f 100644 --- a/core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php +++ b/core/lib/Drupal/Core/Plugin/ContextAwarePluginBase.php @@ -41,11 +41,11 @@ protected function createContextFromConfiguration(array $context_configuration) /** * {@inheritdoc} * - * @return \Drupal\Core\Plugin\Context\ContextInterface - * The context object. - * * This code is identical to the Component in order to pick up a different * Context class. + * + * @return \Drupal\Core\Plugin\Context\ContextInterface + * The context object. */ public function getContext($name) { // Check for a valid context value. diff --git a/core/lib/Drupal/Core/Render/RenderCacheInterface.php b/core/lib/Drupal/Core/Render/RenderCacheInterface.php index f31b33037143d47a2b150c9ba5caa8d4997a7fe7..86f38d3581c1749510de377249ee193bd0040947 100644 --- a/core/lib/Drupal/Core/Render/RenderCacheInterface.php +++ b/core/lib/Drupal/Core/Render/RenderCacheInterface.php @@ -64,7 +64,7 @@ public function get(array $elements); * this array. * * @return bool|null - * Returns FALSE if no cache item could be created, NULL otherwise. + * Returns FALSE if no cache item could be created, NULL otherwise. * * @see ::get() */ diff --git a/core/lib/Drupal/Core/Routing/UrlGenerator.php b/core/lib/Drupal/Core/Routing/UrlGenerator.php index 9291c40fd3ecdfdb355cc41bb6b057bc63c92ae2..a879eda09a5a7dd1eaa6355434f9b2debcbdcf3e 100644 --- a/core/lib/Drupal/Core/Routing/UrlGenerator.php +++ b/core/lib/Drupal/Core/Routing/UrlGenerator.php @@ -253,7 +253,7 @@ protected function doGenerate(array $variables, array $defaults, array $tokens, * $parameters merged in. * * @return string - * The url path corresponding to the route, without the base path. + * The url path corresponding to the route, without the base path. */ protected function getInternalPathFromRoute($name, SymfonyRoute $route, $parameters = array(), $query_params = array()) { // The Route has a cache of its own and is not recompiled as long as it does diff --git a/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php b/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php index f5174f1d26364affa67cc9dd75d4c6c037a07059..70829cd68e957b47b8f0adce094cb78da29f1502 100644 --- a/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php +++ b/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php @@ -21,7 +21,7 @@ interface UrlGeneratorInterface extends VersatileGeneratorInterface { * \Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate(). * * @return string - * The internal Drupal path corresponding to the route. + * The internal Drupal path corresponding to the route. */ public function getPathFromRoute($name, $parameters = array()); diff --git a/core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php b/core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php index d4c46e3ef26603b7b458225f2c5f07969752414a..abe5e9a7b5552dc60de58eae2fa0f0712a4f0f2a 100644 --- a/core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php +++ b/core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php @@ -82,7 +82,7 @@ public function findTranslationFiles($langcode = NULL) { * want to find translation files. * * @return string - * String file pattern. + * String file pattern. */ protected function getTranslationFilesPattern($langcode = NULL) { // The file name matches: drupal-[release version].[language code].po diff --git a/core/modules/book/src/BookManagerInterface.php b/core/modules/book/src/BookManagerInterface.php index fd3cfc1077f7abf79803bf673af1789620d08e12..70d0107c639b80e0e985e4f76dd1df4790af1835 100644 --- a/core/modules/book/src/BookManagerInterface.php +++ b/core/modules/book/src/BookManagerInterface.php @@ -18,6 +18,8 @@ interface BookManagerInterface { * Since this can be the full tree including hidden items, the data returned * may be used for generating an an admin interface or a select. * + * Note: based on menu_tree_all_data(). + * * @param int $bid * The Book ID to find links for. * @param array|null $link @@ -31,8 +33,6 @@ interface BookManagerInterface { * * @return array * An tree of menu links in an array, in the order they should be rendered. - * - * Note: based on menu_tree_all_data(). */ public function bookTreeAllData($bid, $link = NULL, $max_depth = NULL); diff --git a/core/modules/contact/src/ContactFormInterface.php b/core/modules/contact/src/ContactFormInterface.php index f4222fbacda5be18e73ab8b1f21ca933c0aeba5c..eb24fcf2c20a358a8a60bff953e0d98cd12ee16e 100644 --- a/core/modules/contact/src/ContactFormInterface.php +++ b/core/modules/contact/src/ContactFormInterface.php @@ -21,7 +21,7 @@ public function getRecipients(); * Returns an auto-reply message to send to the message author. * * @return string - * An auto-reply message + * An auto-reply message */ public function getReply(); diff --git a/core/modules/content_translation/src/Controller/ContentTranslationController.php b/core/modules/content_translation/src/Controller/ContentTranslationController.php index a5cc1b5a6fb7a9c08e2f7c464efc01f76aed33f3..efd5953f0549a3a6286dddc4d332fb866c94d3cb 100644 --- a/core/modules/content_translation/src/Controller/ContentTranslationController.php +++ b/core/modules/content_translation/src/Controller/ContentTranslationController.php @@ -77,8 +77,8 @@ public function prepareTranslation(ContentEntityInterface $entity, LanguageInter * The route match. * @param string $entity_type_id * (optional) The entity type ID. - * @return array Array of page elements to render. - * Array of page elements to render. + * @return array + * Array of page elements to render. */ public function overview(RouteMatchInterface $route_match, $entity_type_id = NULL) { /** @var \Drupal\Core\Entity\ContentEntityInterface $entity */ diff --git a/core/modules/field/src/Tests/FieldTestBase.php b/core/modules/field/src/Tests/FieldTestBase.php index 2b1b020b4b1fb2e6ddecfcea14a4883da347f339..18259f66cf05720501a8371c4a1448ccda1b9eb0 100644 --- a/core/modules/field/src/Tests/FieldTestBase.php +++ b/core/modules/field/src/Tests/FieldTestBase.php @@ -17,7 +17,7 @@ abstract class FieldTestBase extends WebTestBase { * @param $cardinality * Number of values to generate. * @return - * An array of random values, in the format expected for field values. + * An array of random values, in the format expected for field values. */ function _generateTestFieldValues($cardinality) { $values = array(); diff --git a/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php b/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php index c864de8a77fb3a8152d35a713c465650cb81fe60..27cbf2614d92d7878860ce7d84a601e8f63e1c2c 100644 --- a/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php +++ b/core/modules/field/tests/src/Kernel/FieldKernelTestBase.php @@ -158,7 +158,7 @@ protected function entityValidateAndSave(EntityInterface $entity) { * @param $cardinality * Number of values to generate. * @return - * An array of random values, in the format expected for field values. + * An array of random values, in the format expected for field values. */ protected function _generateTestFieldValues($cardinality) { $values = array(); diff --git a/core/modules/file/src/Plugin/migrate/destination/EntityFile.php b/core/modules/file/src/Plugin/migrate/destination/EntityFile.php index 981706f63e0d931d137a717df5d24f2280186e43..900db6a89aa411ac0d3668c40406b30d3afa60a5 100644 --- a/core/modules/file/src/Plugin/migrate/destination/EntityFile.php +++ b/core/modules/file/src/Plugin/migrate/destination/EntityFile.php @@ -147,7 +147,7 @@ public function import(Row $row, array $old_destination_id_values = array()) { * (optional) FILE_EXISTS_REPLACE (default) or FILE_EXISTS_RENAME. * * @return bool - * TRUE on success, FALSE on failure. + * TRUE on success, FALSE on failure. */ protected function writeFile($source, $destination, $replace = FILE_EXISTS_REPLACE) { if ($this->configuration['move']) { @@ -190,8 +190,8 @@ protected function getOverwriteMode(Row $row) { * The URI or path. * * @return string|false - * The directory component of the path or URI, or FALSE if it could not - * be determined. + * The directory component of the path or URI, or FALSE if it could not + * be determined. */ protected function getDirectory($uri) { $dir = $this->fileSystem->dirname($uri); @@ -213,8 +213,8 @@ protected function getDirectory($uri) { * The destination URI. * * @return bool - * TRUE if the source and destination URIs refer to the same physical path, - * otherwise FALSE. + * TRUE if the source and destination URIs refer to the same physical path, + * otherwise FALSE. */ protected function isLocationUnchanged($source, $destination) { if ($this->isLocalUri($source) && $this->isLocalUri($destination)) { diff --git a/core/modules/file/src/Tests/FileListingTest.php b/core/modules/file/src/Tests/FileListingTest.php index 78a760249b57f13dc90c2e6ecf556df25d153bf4..4fd233df9525ecbd18d420e0475cad59427a3b80 100644 --- a/core/modules/file/src/Tests/FileListingTest.php +++ b/core/modules/file/src/Tests/FileListingTest.php @@ -148,7 +148,7 @@ function testFileListingPages() { * Creates and saves a test file. * * @return \Drupal\Core\Entity\EntityInterface - * A file entity. + * A file entity. */ protected function createFile() { // Create a new file entity. diff --git a/core/modules/language/src/DefaultLanguageItem.php b/core/modules/language/src/DefaultLanguageItem.php index 3710afd75aa84e059a1dd3d3bea8d2a081ea2fd6..0e3889050a182265b611009a51df7fa2a533f0a3 100644 --- a/core/modules/language/src/DefaultLanguageItem.php +++ b/core/modules/language/src/DefaultLanguageItem.php @@ -40,7 +40,7 @@ public function applyDefaultValue($notify = TRUE) { * The entity whose language code to be loaded. * * @return string - * A string language code. + * A string language code. */ public function getDefaultLangcode(EntityInterface $entity) { return language_get_default_langcode($entity->getEntityTypeId(), $entity->bundle()); diff --git a/core/modules/node/node.api.php b/core/modules/node/node.api.php index e347423dca6874b8c1ab93a8a3342659929d5d2f..ae36aa0bbb137a741cdc8041b2b8f3f462c675d4 100644 --- a/core/modules/node/node.api.php +++ b/core/modules/node/node.api.php @@ -64,6 +64,8 @@ * sure to restore your {node_access} record after node_access_rebuild() is * called. * + * For a detailed example, see node_access_example.module. + * * @param \Drupal\Core\Session\AccountInterface $account * The account object whose grants are requested. * @param string $op @@ -73,8 +75,6 @@ * An array whose keys are "realms" of grants, and whose values are arrays of * the grant IDs within this realm that this user is being granted. * - * For a detailed example, see node_access_example.module. - * * @see node_access_view_all_nodes() * @see node_access_rebuild() * @ingroup node_access diff --git a/core/modules/search/src/SearchPageInterface.php b/core/modules/search/src/SearchPageInterface.php index b3ed0b1573570611572ae59d43d575487ef0bbff..67d57c31b42aa3e151c83dcdd5fbcaacf51463a4 100644 --- a/core/modules/search/src/SearchPageInterface.php +++ b/core/modules/search/src/SearchPageInterface.php @@ -45,7 +45,7 @@ public function isIndexable(); * Returns the path for the search. * * @return string - * The part of the path for this search page that comes after 'search'. + * The part of the path for this search page that comes after 'search'. */ public function getPath(); diff --git a/core/modules/simpletest/simpletest.module b/core/modules/simpletest/simpletest.module index d8b653e87e362a7a658c07abe163ca4702d32b14..d119f7fee3b01ffc7d9051afc86667e47f63afde 100644 --- a/core/modules/simpletest/simpletest.module +++ b/core/modules/simpletest/simpletest.module @@ -259,7 +259,7 @@ function simpletest_phpunit_configuration_filepath() { * this variable. * * @return string - * The results as returned by exec(). + * The results as returned by exec(). */ function simpletest_phpunit_run_command(array $unescaped_test_classnames, $phpunit_file, &$status = NULL) { // Setup an environment variable containing the database connection so that diff --git a/core/modules/simpletest/src/Form/SimpletestResultsForm.php b/core/modules/simpletest/src/Form/SimpletestResultsForm.php index d2a84d6ca41005a6d4d941ba0cca97b6afc71e29..c22c0a7d0cb72d5d5051400271819d39dc524c58 100644 --- a/core/modules/simpletest/src/Form/SimpletestResultsForm.php +++ b/core/modules/simpletest/src/Form/SimpletestResultsForm.php @@ -214,7 +214,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) { * The test_id to retrieve results of. * * @return array - * Array of results grouped by test_class. + * Array of results grouped by test_class. */ protected function getResults($test_id) { return $this->database->select('simpletest') diff --git a/core/modules/system/src/Controller/AdminController.php b/core/modules/system/src/Controller/AdminController.php index d3186d080fed5b3a42f9ed1edba16633c8ec3274..57c13f653d4fbc415bc72eab40a6966e3ce09647 100644 --- a/core/modules/system/src/Controller/AdminController.php +++ b/core/modules/system/src/Controller/AdminController.php @@ -13,7 +13,7 @@ class AdminController extends ControllerBase { * Prints a listing of admin tasks, organized by module. * * @return array - * A render array containing the listing. + * A render array containing the listing. */ public function index() { $module_info = system_get_info('module'); diff --git a/core/modules/system/src/Plugin/views/field/BulkForm.php b/core/modules/system/src/Plugin/views/field/BulkForm.php index 5160a7a060031de86189479b14553e5c3dbbf7bf..d5842bc2cb4744787db71abf6775918d27b3e4bb 100644 --- a/core/modules/system/src/Plugin/views/field/BulkForm.php +++ b/core/modules/system/src/Plugin/views/field/BulkForm.php @@ -394,7 +394,7 @@ public function viewsFormSubmit(&$form, FormStateInterface $form_state) { * Returns the message to be displayed when there are no selected items. * * @return string - * Message displayed when no items are selected. + * Message displayed when no items are selected. */ protected function emptySelectedMessage() { return $this->t('No items selected.'); diff --git a/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php index e02917de7c2fbaf3b08783dec4efcf60753c2f03..f8a01443535c7971a9e9749f7887e7cdbd9caea3 100644 --- a/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php +++ b/core/modules/system/src/Tests/Entity/EntityCacheTagsTestBase.php @@ -229,7 +229,7 @@ protected function selectViewMode($entity_type) { * The entity that the referencing entity should reference. * * @return \Drupal\Core\Entity\EntityInterface[] - * An array containing a referencing entity and a non-referencing entity. + * An array containing a referencing entity and a non-referencing entity. */ protected function createReferenceTestEntities($referenced_entity) { // All referencing entities should be of the type 'entity_test'. diff --git a/core/modules/taxonomy/taxonomy.module b/core/modules/taxonomy/taxonomy.module index 30a9ca224b8393b9b7b2b9b4f255ab061b73bd96..07f00d7f60fabbdc44a98c505e751de78cc60b5f 100644 --- a/core/modules/taxonomy/taxonomy.module +++ b/core/modules/taxonomy/taxonomy.module @@ -377,7 +377,7 @@ function taxonomy_term_load_multiple(array $tids = NULL) { * (optional) An array of entity IDs. If omitted, all entities are loaded. * * @return array - * An array of vocabulary objects, indexed by vid. + * An array of vocabulary objects, indexed by vid. */ function taxonomy_vocabulary_load_multiple(array $vids = NULL) { return Vocabulary::loadMultiple($vids); diff --git a/core/modules/toolbar/src/Element/Toolbar.php b/core/modules/toolbar/src/Element/Toolbar.php index 7077372925b2fd1275e1eb4eb707a9b2371b7efd..69a53dbd855078cd19f7652f7bf99fa30650d79e 100644 --- a/core/modules/toolbar/src/Element/Toolbar.php +++ b/core/modules/toolbar/src/Element/Toolbar.php @@ -59,7 +59,7 @@ public function getInfo() { * A renderable array. * * @return array - * A renderable array. + * A renderable array. * * @see toolbar_page_top() */ diff --git a/core/modules/user/src/SharedTempStore.php b/core/modules/user/src/SharedTempStore.php index 8e7fcfe7735ff4e5dac87ea1b28d9bc89b67852a..d6295266cbd79418ea739dda86fa50a3a66f19a0 100644 --- a/core/modules/user/src/SharedTempStore.php +++ b/core/modules/user/src/SharedTempStore.php @@ -163,7 +163,7 @@ public function setIfNotExists($key, $value) { * * @return bool * TRUE if the data was set, or FALSE if it already exists and is not owned - * by $this->user. + * by $this->user. */ public function setIfOwner($key, $value) { if ($this->setIfNotExists($key, $value)) { diff --git a/core/modules/views/src/Controller/ViewAjaxController.php b/core/modules/views/src/Controller/ViewAjaxController.php index 022f4d7d3ca040f741bc3adada5b2e10c51cff07..7993d2a58506025e2db4429f9be972c8505787be 100644 --- a/core/modules/views/src/Controller/ViewAjaxController.php +++ b/core/modules/views/src/Controller/ViewAjaxController.php @@ -104,7 +104,7 @@ public static function create(ContainerInterface $container) { * The current request object. * * @return \Drupal\views\Ajax\ViewAjaxResponse - * The view response as ajax response. + * The view response as ajax response. * * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException * Thrown when the view was not found. diff --git a/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php b/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php index 28f13b3a24999357e992c8bae74bf3c54c2ef43a..982b4ce28ad6018753476f0938b0cd8ff909d740 100644 --- a/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php +++ b/core/modules/views/src/Plugin/views/display/DisplayPluginInterface.php @@ -568,7 +568,7 @@ public function getSpecialBlocks(); * Renders the exposed form as block. * * @return string|null - * The rendered exposed form as string or NULL otherwise. + * The rendered exposed form as string or NULL otherwise. */ public function viewExposedFormBlocks(); diff --git a/core/modules/views/src/Plugin/views/field/FieldHandlerInterface.php b/core/modules/views/src/Plugin/views/field/FieldHandlerInterface.php index d1115a94a671e6b87eb381449bbb30085821412e..d7389c937d18bb1b3e45956def9dbc29e00cf764 100644 --- a/core/modules/views/src/Plugin/views/field/FieldHandlerInterface.php +++ b/core/modules/views/src/Plugin/views/field/FieldHandlerInterface.php @@ -140,7 +140,7 @@ public function getValue(ResultRow $values, $field = NULL); * by in the style settings. * * @return bool - * TRUE if this field handler is groupable, otherwise FALSE. + * TRUE if this field handler is groupable, otherwise FALSE. */ public function useStringGroupBy(); @@ -215,7 +215,7 @@ public function advancedRender(ResultRow $values); * Whether or not to use empty() to check the value. * * @return bool - * TRUE if the value is considered empty, FALSE otherwise. + * TRUE if the value is considered empty, FALSE otherwise. */ public function isValueEmpty($value, $empty_zero, $no_skip_empty = TRUE); diff --git a/core/modules/views/src/Tests/Plugin/NumericFormatPluralTest.php b/core/modules/views/src/Tests/Plugin/NumericFormatPluralTest.php index 94f752b0b8254ef99a1552bae9295044912a5103..bb0632875c6c068eaa39aae19b447d091ca757f8 100644 --- a/core/modules/views/src/Tests/Plugin/NumericFormatPluralTest.php +++ b/core/modules/views/src/Tests/Plugin/NumericFormatPluralTest.php @@ -136,7 +136,7 @@ function testNumericFormatPlural() { * Creates and saves a test file. * * @return \Drupal\Core\Entity\EntityInterface - * A file entity. + * A file entity. */ protected function createFile() { // Create a new file entity. diff --git a/core/modules/views/src/ViewExecutable.php b/core/modules/views/src/ViewExecutable.php index a29d4525dcbbf2552e68279cf37d3207e879829a..da859252cd7bb34894111a01ba0de6f553ffb12d 100644 --- a/core/modules/views/src/ViewExecutable.php +++ b/core/modules/views/src/ViewExecutable.php @@ -2376,7 +2376,7 @@ public function setShowAdminLinks($show_admin_links) { * Returns whether admin links should be rendered on the view. * * @return bool - * TRUE if admin links should be rendered, else FALSE. + * TRUE if admin links should be rendered, else FALSE. */ public function getShowAdminLinks() { if (!isset($this->showAdminLinks)) { diff --git a/core/modules/views/src/Views.php b/core/modules/views/src/Views.php index 10d824080bb49554f5a75d907ed14ebd923e8ac0..4689479981548b28c0010cd87bda2f2af4dc38ed 100644 --- a/core/modules/views/src/Views.php +++ b/core/modules/views/src/Views.php @@ -295,8 +295,8 @@ public static function getDisabledViews() { * If TRUE, the list of views is sorted ascending. * * @return array - * an associative array for use in select. - * - key: view name and display id separated by ':', or the view name only + * An associative array for use in select. + * - key: view name and display id separated by ':', or the view name only. */ public static function getViewsAsOptions($views_only = FALSE, $filter = 'all', $exclude_view = NULL, $optgroup = FALSE, $sort = FALSE) { diff --git a/core/phpcs.xml.dist b/core/phpcs.xml.dist index 8619917d3323a9a37f4d3487032957a0e41bb13a..0ac6ceced79fd067b0b1c8479c9dee331cd3e130 100644 --- a/core/phpcs.xml.dist +++ b/core/phpcs.xml.dist @@ -59,7 +59,6 @@ <exclude name="Drupal.Commenting.FunctionComment.ParamCommentFullStop"/> <exclude name="Drupal.Commenting.FunctionComment.ParamCommentNotCapital"/> <exclude name="Drupal.Commenting.FunctionComment.ParamNameNoMatch"/> - <exclude name="Drupal.Commenting.FunctionComment.ReturnCommentIndentation"/> <exclude name="Drupal.Commenting.FunctionComment.TypeHintMissing"/> <exclude name="Drupal.Commenting.FunctionComment.VoidReturn"/> </rule> diff --git a/core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php b/core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php index f03599de977686d89e8274a04ffc2301d1f858ba..ae4925ce01c687717f745f0fc4f2b553f81569b3 100644 --- a/core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php +++ b/core/tests/Drupal/KernelTests/Core/Entity/EntityAutocompleteTest.php @@ -146,7 +146,7 @@ public function testSelectionSettingsHandling() { * The label of the entity to query by. * * @return mixed - * The JSON value encoded in its appropriate PHP type. + * The JSON value encoded in its appropriate PHP type. */ protected function getAutocompleteResult($input) { $request = Request::create('entity_reference_autocomplete/' . $this->entityType . '/default'); diff --git a/core/tests/Drupal/Tests/Component/Utility/ImageTest.php b/core/tests/Drupal/Tests/Component/Utility/ImageTest.php index 41eb064ebc086888d3ac35c113595e41f96f20f4..7c3a5ac1295d18572952427cfea15ce21c4c067f 100644 --- a/core/tests/Drupal/Tests/Component/Utility/ImageTest.php +++ b/core/tests/Drupal/Tests/Component/Utility/ImageTest.php @@ -35,11 +35,10 @@ public function testScaleDimensions($input, $output) { * * @return array * Keyed array containing: - * - 'input' - Array which contains input for - * Image::scaleDimensions(). - * - 'output' - Array which contains expected output after passing - * through Image::scaleDimensions. Also contains a boolean - * 'return_value' which should match the expected return value. + * - 'input' - Array which contains input for Image::scaleDimensions(). + * - 'output' - Array which contains expected output after passing + * through Image::scaleDimensions. Also contains a boolean + * 'return_value' which should match the expected return value. * * @see testScaleDimensions() */ diff --git a/core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php b/core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php index b8345b46db9ad3be965b4a710ebdd72494d73f13..39759b51cd5e6eb132df5dbdf7960114986bb5d1 100644 --- a/core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php +++ b/core/tests/Drupal/Tests/Component/Utility/UnicodeTest.php @@ -474,11 +474,11 @@ public function testValidateUtf8($text, $expected, $message) { /** * Provides data for self::testValidateUtf8(). * + * Invalid UTF-8 examples sourced from http://stackoverflow.com/a/11709412/109119. + * * @return array * An array of arrays, each containing the parameters for * self::testValidateUtf8(). - * - * Invalid UTF-8 examples sourced from http://stackoverflow.com/a/11709412/109119. */ public function providerTestValidateUtf8() { return array( diff --git a/core/tests/Drupal/Tests/Component/Uuid/UuidTest.php b/core/tests/Drupal/Tests/Component/Uuid/UuidTest.php index 96b004dd4b8d6821ace76b647a2e5078b6dc7522..a393bfb27751f8bd2bda50ca7993768f30886b17 100644 --- a/core/tests/Drupal/Tests/Component/Uuid/UuidTest.php +++ b/core/tests/Drupal/Tests/Component/Uuid/UuidTest.php @@ -77,7 +77,7 @@ public function testValidation($uuid, $is_valid, $message) { * Dataprovider for UUID instance tests. * * @return array - * An array of arrays containing + * An array of arrays containing * - The Uuid to check against. * - (bool) Whether or not the Uuid is valid. * - Failure message.