From a7847919c4cb0f401207e34f44625c154b740f62 Mon Sep 17 00:00:00 2001 From: Lee Rowlands <lee.rowlands@previousnext.com.au> Date: Tue, 6 Aug 2019 15:56:28 +1000 Subject: [PATCH] Issue #2940038 by Sweetchuck, drunken monkey, rajeshwari10, borisson_: Use $this in @return PhpDoc comments instead of the name of the current class or interface --- .../Plugin/ContextAwarePluginInterface.php | 2 +- core/lib/Drupal/Core/Ajax/AjaxResponse.php | 2 +- .../Core/Archiver/ArchiverInterface.php | 6 ++--- .../Core/Asset/AttachedAssetsInterface.php | 2 +- core/lib/Drupal/Core/Cache/BackendChain.php | 4 ++-- core/lib/Drupal/Core/Config/Config.php | 10 ++++---- .../lib/Drupal/Core/Config/ConfigImporter.php | 4 ++-- .../Config/PreExistingConfigException.php | 2 +- .../Core/Config/StorageComparerInterface.php | 2 +- .../Drupal/Core/Config/StorageInterface.php | 2 +- .../Database/Query/AlterableInterface.php | 4 ++-- .../Database/Query/ConditionInterface.php | 12 +++++----- .../lib/Drupal/Core/Database/Query/Insert.php | 2 +- core/lib/Drupal/Core/Database/Query/Merge.php | 12 +++++----- .../Core/Database/Query/SelectInterface.php | 14 +++++------ .../lib/Drupal/Core/Database/Query/Update.php | 4 ++-- .../Query/ConditionAggregateInterface.php | 2 +- .../Core/Entity/Query/ConditionInterface.php | 12 +++++++--- .../Entity/Query/QueryAggregateInterface.php | 12 +++++----- .../Core/Entity/Query/QueryInterface.php | 18 +++++++------- .../Drupal/Core/Entity/Query/Sql/Query.php | 8 +++---- .../Core/Entity/Query/Sql/QueryAggregate.php | 8 +++---- .../Core/Executable/ExecutablePluginBase.php | 2 +- .../lib/Drupal/Core/Form/EnforcedResponse.php | 2 +- .../ImageToolkit/ImageToolkitInterface.php | 2 +- .../Language/LanguageManagerInterface.php | 2 +- .../Drupal/Core/Menu/LocalTaskInterface.php | 2 +- .../Core/Plugin/Context/EntityContext.php | 2 +- .../Core/Session/AccountSwitcherInterface.php | 4 ++-- .../PluralTranslatableMarkup.php | 2 +- .../Core/TypedData/ListDataDefinition.php | 2 +- .../Core/TypedData/TypedDataInterface.php | 2 +- core/lib/Drupal/Core/Url.php | 12 +++++----- core/modules/aggregator/src/FeedInterface.php | 24 +++++++++---------- core/modules/aggregator/src/ItemInterface.php | 14 +++++------ .../src/BlockContentInterface.php | 6 ++--- .../modules/image/src/ImageStyleInterface.php | 2 +- .../jsonapi/src/JsonApiResource/Data.php | 2 +- core/modules/jsonapi/src/Query/OffsetPage.php | 2 +- .../locale/src/StringStorageInterface.php | 4 ++-- core/modules/locale/src/TranslationString.php | 2 +- core/modules/media/src/MediaInterface.php | 2 +- .../media_library/src/MediaLibraryState.php | 4 ++-- core/modules/node/src/NodeInterface.php | 12 +++++----- .../search/src/Plugin/SearchInterface.php | 2 +- .../shortcut/src/ShortcutInterface.php | 4 ++-- .../shortcut/src/ShortcutSetInterface.php | 2 +- .../src/Plugin/ImageToolkit/GDToolkit.php | 2 +- .../src/TestFileTransferWithSettingsForm.php | 2 +- core/modules/user/src/UserInterface.php | 14 +++++------ .../workflows/src/WorkflowTypeInterface.php | 2 +- 51 files changed, 143 insertions(+), 137 deletions(-) diff --git a/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php b/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php index 90ee661201b0..5c04b5a2c5c8 100644 --- a/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php +++ b/core/lib/Drupal/Component/Plugin/ContextAwarePluginInterface.php @@ -103,7 +103,7 @@ public function setContext($name, ContextInterface $context); * The value to set the context to. The value has to validate against the * provided context definition. * - * @return \Drupal\Component\Plugin\ContextAwarePluginInterface + * @return $this * A context aware plugin object for chaining. * * @throws \Drupal\Component\Plugin\Exception\PluginException diff --git a/core/lib/Drupal/Core/Ajax/AjaxResponse.php b/core/lib/Drupal/Core/Ajax/AjaxResponse.php index 4d1c123348ed..189a7b29ae5a 100644 --- a/core/lib/Drupal/Core/Ajax/AjaxResponse.php +++ b/core/lib/Drupal/Core/Ajax/AjaxResponse.php @@ -32,7 +32,7 @@ class AjaxResponse extends JsonResponse implements AttachmentsInterface { * A boolean which determines whether the new command should be executed * before previously added commands. Defaults to FALSE. * - * @return AjaxResponse + * @return $this * The current AjaxResponse. */ public function addCommand(CommandInterface $command, $prepend = FALSE) { diff --git a/core/lib/Drupal/Core/Archiver/ArchiverInterface.php b/core/lib/Drupal/Core/Archiver/ArchiverInterface.php index 2e635364bc89..979b93ac80bd 100644 --- a/core/lib/Drupal/Core/Archiver/ArchiverInterface.php +++ b/core/lib/Drupal/Core/Archiver/ArchiverInterface.php @@ -18,7 +18,7 @@ interface ArchiverInterface { * The full system path of the file or directory to add. Only local files * and directories are supported. * - * @return \Drupal\Core\Archiver\ArchiverInterface + * @return $this * The called object. */ public function add($file_path); @@ -29,7 +29,7 @@ public function add($file_path); * @param string $path * The file name relative to the root of the archive to remove. * - * @return \Drupal\Core\Archiver\ArchiverInterface + * @return $this * The called object. */ public function remove($path); @@ -44,7 +44,7 @@ public function remove($path); * relative to the root of the archive. If not specified, all files * in the archive will be extracted. * - * @return \Drupal\Core\Archiver\ArchiverInterface + * @return $this * The called object. */ public function extract($path, array $files = []); diff --git a/core/lib/Drupal/Core/Asset/AttachedAssetsInterface.php b/core/lib/Drupal/Core/Asset/AttachedAssetsInterface.php index f191f9d20f50..c100264ad309 100644 --- a/core/lib/Drupal/Core/Asset/AttachedAssetsInterface.php +++ b/core/lib/Drupal/Core/Asset/AttachedAssetsInterface.php @@ -21,7 +21,7 @@ interface AttachedAssetsInterface { * @param array $render_array * A render array. * - * @return \Drupal\Core\Asset\AttachedAssetsInterface + * @return static * * @throws \LogicException */ diff --git a/core/lib/Drupal/Core/Cache/BackendChain.php b/core/lib/Drupal/Core/Cache/BackendChain.php index 8e02656eed58..97bbcaffd683 100644 --- a/core/lib/Drupal/Core/Cache/BackendChain.php +++ b/core/lib/Drupal/Core/Cache/BackendChain.php @@ -50,7 +50,7 @@ public function __construct($bin = NULL) { * @param CacheBackendInterface $backend * The cache backend to be appended to the cache chain. * - * @return \Drupal\Core\Cache\BackendChain + * @return $this * The called object. */ public function appendBackend(CacheBackendInterface $backend) { @@ -65,7 +65,7 @@ public function appendBackend(CacheBackendInterface $backend) { * @param CacheBackendInterface $backend * The backend to be prepended to the cache chain. * - * @return \Drupal\Core\Cache\BackendChain + * @return $this * The called object. */ public function prependBackend(CacheBackendInterface $backend) { diff --git a/core/lib/Drupal/Core/Config/Config.php b/core/lib/Drupal/Core/Config/Config.php index f7e0ede695d1..0d66e8464ff7 100644 --- a/core/lib/Drupal/Core/Config/Config.php +++ b/core/lib/Drupal/Core/Config/Config.php @@ -117,7 +117,7 @@ public function setData(array $data) { * @param array $data * The overridden values of the configuration data. * - * @return \Drupal\Core\Config\Config + * @return $this * The configuration object. */ public function setSettingsOverride(array $data) { @@ -132,7 +132,7 @@ public function setSettingsOverride(array $data) { * @param array $data * The overridden values of the configuration data. * - * @return \Drupal\Core\Config\Config + * @return $this * The configuration object. */ public function setModuleOverride(array $data) { @@ -149,7 +149,7 @@ public function setModuleOverride(array $data) { * provided by modules. Precedence or different module overrides is * determined by the priority of the config.factory.override tagged services. * - * @return \Drupal\Core\Config\Config + * @return $this * The configuration object. */ protected function setOverriddenData() { @@ -169,7 +169,7 @@ protected function setOverriddenData() { * This method should be called after the original data or the overridden data * has been changed. * - * @return \Drupal\Core\Config\Config + * @return $this * The configuration object. */ protected function resetOverriddenData() { @@ -236,7 +236,7 @@ public function save($has_trusted_data = FALSE) { /** * Deletes the configuration object. * - * @return \Drupal\Core\Config\Config + * @return $this * The configuration object. */ public function delete() { diff --git a/core/lib/Drupal/Core/Config/ConfigImporter.php b/core/lib/Drupal/Core/Config/ConfigImporter.php index 03ad2b2d422f..c1ce52d047b2 100644 --- a/core/lib/Drupal/Core/Config/ConfigImporter.php +++ b/core/lib/Drupal/Core/Config/ConfigImporter.php @@ -248,7 +248,7 @@ public function getStorageComparer() { /** * Resets the storage comparer and processed list. * - * @return \Drupal\Core\Config\ConfigImporter + * @return $this * The ConfigImporter instance. */ public function reset() { @@ -475,7 +475,7 @@ protected function getUnprocessedExtensions($type) { /** * Imports the changelist to the target storage. * - * @return \Drupal\Core\Config\ConfigImporter + * @return $this * The ConfigImporter instance. * * @throws \Drupal\Core\Config\ConfigException diff --git a/core/lib/Drupal/Core/Config/PreExistingConfigException.php b/core/lib/Drupal/Core/Config/PreExistingConfigException.php index a71604e16009..ada95f6572c0 100644 --- a/core/lib/Drupal/Core/Config/PreExistingConfigException.php +++ b/core/lib/Drupal/Core/Config/PreExistingConfigException.php @@ -53,7 +53,7 @@ public function getExtension() { * A list of configuration objects that already exist in active * configuration, keyed by config collection. * - * @return \Drupal\Core\Config\PreExistingConfigException + * @return $this */ public static function create($extension, array $config_objects) { $message = new FormattableMarkup('Configuration objects (@config_names) provided by @extension already exist in active configuration', diff --git a/core/lib/Drupal/Core/Config/StorageComparerInterface.php b/core/lib/Drupal/Core/Config/StorageComparerInterface.php index 803e092e8980..ee61c51a4d4c 100644 --- a/core/lib/Drupal/Core/Config/StorageComparerInterface.php +++ b/core/lib/Drupal/Core/Config/StorageComparerInterface.php @@ -57,7 +57,7 @@ public function getChangelist($op = NULL, $collection = StorageInterface::DEFAUL /** * Recalculates the differences. * - * @return \Drupal\Core\Config\StorageComparerInterface + * @return $this * An object which implements the StorageComparerInterface. */ public function reset(); diff --git a/core/lib/Drupal/Core/Config/StorageInterface.php b/core/lib/Drupal/Core/Config/StorageInterface.php index 18a712633494..fe6857a10626 100644 --- a/core/lib/Drupal/Core/Config/StorageInterface.php +++ b/core/lib/Drupal/Core/Config/StorageInterface.php @@ -173,7 +173,7 @@ public function deleteAll($prefix = ''); * configuration in a way that allows retrieval of configuration for a * particular collection. * - * @return \Drupal\Core\Config\StorageInterface + * @return $this * A new instance of the storage backend with the collection set. */ public function createCollection($collection); diff --git a/core/lib/Drupal/Core/Database/Query/AlterableInterface.php b/core/lib/Drupal/Core/Database/Query/AlterableInterface.php index d0e3f3461755..a77c26acd374 100644 --- a/core/lib/Drupal/Core/Database/Query/AlterableInterface.php +++ b/core/lib/Drupal/Core/Database/Query/AlterableInterface.php @@ -19,7 +19,7 @@ interface AlterableInterface { * @param $tag * The tag to add. * - * @return \Drupal\Core\Database\Query\AlterableInterface + * @return $this * The called object. */ public function addTag($tag); @@ -76,7 +76,7 @@ public function hasAnyTag(); * @param $object * The additional data to add to the query. May be any valid PHP variable. * - * @return \Drupal\Core\Database\Query\AlterableInterface + * @return $this * The called object. */ public function addMetaData($key, $object); diff --git a/core/lib/Drupal/Core/Database/Query/ConditionInterface.php b/core/lib/Drupal/Core/Database/Query/ConditionInterface.php index fe5140c2af42..99a273198953 100644 --- a/core/lib/Drupal/Core/Database/Query/ConditionInterface.php +++ b/core/lib/Drupal/Core/Database/Query/ConditionInterface.php @@ -58,7 +58,7 @@ interface ConditionInterface { * - The operators (NOT) BETWEEN, (NOT) IN, (NOT) EXISTS, (NOT) LIKE. * Other operators (e.g. LIKE, BINARY) may or may not work. Defaults to =. * - * @return \Drupal\Core\Database\Query\ConditionInterface + * @return $this * The called object. * * @throws \Drupal\Core\Database\InvalidQueryException @@ -83,7 +83,7 @@ public function condition($field, $value = NULL, $operator = '='); * @param array $args * An associative array of arguments keyed by the named placeholders. * - * @return \Drupal\Core\Database\Query\ConditionInterface + * @return $this * The called object. */ public function where($snippet, $args = []); @@ -94,7 +94,7 @@ public function where($snippet, $args = []); * @param string|\Drupal\Core\Database\Query\SelectInterface $field * The name of the field or a subquery to check. * - * @return \Drupal\Core\Database\Query\ConditionInterface + * @return $this * The called object. */ public function isNull($field); @@ -105,7 +105,7 @@ public function isNull($field); * @param string|\Drupal\Core\Database\Query\SelectInterface $field * The name of the field or a subquery to check. * - * @return \Drupal\Core\Database\Query\ConditionInterface + * @return $this * The called object. */ public function isNotNull($field); @@ -116,7 +116,7 @@ public function isNotNull($field); * @param \Drupal\Core\Database\Query\SelectInterface $select * The subquery that must contain results. * - * @return \Drupal\Core\Database\Query\ConditionInterface + * @return $this * The called object. */ public function exists(SelectInterface $select); @@ -127,7 +127,7 @@ public function exists(SelectInterface $select); * @param \Drupal\Core\Database\Query\SelectInterface $select * The subquery that must not contain results. * - * @return \Drupal\Core\Database\Query\ConditionInterface + * @return $this * The called object. */ public function notExists(SelectInterface $select); diff --git a/core/lib/Drupal/Core/Database/Query/Insert.php b/core/lib/Drupal/Core/Database/Query/Insert.php index 3af2d2ac6ff8..011d4423d1e5 100644 --- a/core/lib/Drupal/Core/Database/Query/Insert.php +++ b/core/lib/Drupal/Core/Database/Query/Insert.php @@ -44,7 +44,7 @@ public function __construct($connection, $table, array $options = []) { * @param \Drupal\Core\Database\Query\SelectInterface $query * The query to fetch the rows that should be inserted. * - * @return \Drupal\Core\Database\Query\Insert + * @return $this * The called object. */ public function from(SelectInterface $query) { diff --git a/core/lib/Drupal/Core/Database/Query/Merge.php b/core/lib/Drupal/Core/Database/Query/Merge.php index 4afe5de2ebb2..6d8953247276 100644 --- a/core/lib/Drupal/Core/Database/Query/Merge.php +++ b/core/lib/Drupal/Core/Database/Query/Merge.php @@ -148,7 +148,7 @@ public function __construct(Connection $connection, $table, array $options = []) * The table name or the subquery to be used. Use a Select query object to * pass in a subquery. * - * @return \Drupal\Core\Database\Query\Merge + * @return $this * The called object. */ protected function conditionTable($table) { @@ -163,7 +163,7 @@ protected function conditionTable($table) { * An associative array of fields to write into the database. The array keys * are the field names and the values are the values to which to set them. * - * @return \Drupal\Core\Database\Query\Merge + * @return $this * The called object. */ public function updateFields(array $fields) { @@ -188,7 +188,7 @@ public function updateFields(array $fields) { * If specified, this is an array of key/value pairs for named placeholders * corresponding to the expression. * - * @return \Drupal\Core\Database\Query\Merge + * @return $this * The called object. */ public function expression($field, $expression, array $arguments = NULL) { @@ -213,7 +213,7 @@ public function expression($field, $expression, array $arguments = NULL) { * An array of fields to insert into the database. The values must be * specified in the same order as the $fields array. * - * @return \Drupal\Core\Database\Query\Merge + * @return $this * The called object. */ public function insertFields(array $fields, array $values = []) { @@ -240,7 +240,7 @@ public function insertFields(array $fields, array $values = []) { * An array of values for which to use the default values * specified in the table definition. * - * @return \Drupal\Core\Database\Query\Merge + * @return $this * The called object. */ public function useDefaults(array $fields) { @@ -266,7 +266,7 @@ public function useDefaults(array $fields) { * An array of values to set into the database. The values must be * specified in the same order as the $fields array. * - * @return \Drupal\Core\Database\Query\Merge + * @return $this * The called object. */ public function fields(array $fields, array $values = []) { diff --git a/core/lib/Drupal/Core/Database/Query/SelectInterface.php b/core/lib/Drupal/Core/Database/Query/SelectInterface.php index 4b4c8e8ae467..4db9452ffb11 100644 --- a/core/lib/Drupal/Core/Database/Query/SelectInterface.php +++ b/core/lib/Drupal/Core/Database/Query/SelectInterface.php @@ -169,7 +169,7 @@ public function getArguments(PlaceholderInterface $queryPlaceholder = NULL); * * @param $distinct * TRUE to flag this query DISTINCT, FALSE to disable it. - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object. */ public function distinct($distinct = TRUE); @@ -211,7 +211,7 @@ public function addField($table_alias, $field, $alias = NULL); * An indexed array of fields present in the specified table that should be * included in this query. If not specified, $table_alias.* will be generated * without any aliases. - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object. */ public function fields($table_alias, array $fields = []); @@ -411,7 +411,7 @@ public function addJoin($type, $table, $alias = NULL, $condition = NULL, $argume * @param $direction * The direction to sort. Legal values are "ASC" and "DESC". Any other value * will be converted to "ASC". - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object. */ public function orderBy($field, $direction = 'ASC'); @@ -433,7 +433,7 @@ public function orderBy($field, $direction = 'ASC'); * * for an example of such an alternate sorting mechanism. * - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object */ public function orderRandom(); @@ -449,7 +449,7 @@ public function orderRandom(); * range directives that are set. * @param $length * The number of records to return from the result set. - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object. */ public function range($start = NULL, $length = NULL); @@ -474,7 +474,7 @@ public function range($start = NULL, $length = NULL); * @param $type * The type of UNION to add to the query. Defaults to plain * UNION. - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object. */ public function union(SelectInterface $query, $type = ''); @@ -484,7 +484,7 @@ public function union(SelectInterface $query, $type = ''); * * @param $field * The field on which to group. This should be the field as aliased. - * @return \Drupal\Core\Database\Query\SelectInterface + * @return $this * The called object. */ public function groupBy($field); diff --git a/core/lib/Drupal/Core/Database/Query/Update.php b/core/lib/Drupal/Core/Database/Query/Update.php index ba0661c7a08b..5de5d682ec3f 100644 --- a/core/lib/Drupal/Core/Database/Query/Update.php +++ b/core/lib/Drupal/Core/Database/Query/Update.php @@ -75,7 +75,7 @@ public function __construct(Connection $connection, $table, array $options = []) * An associative array of fields to write into the database. The array keys * are the field names and the values are the values to which to set them. * - * @return \Drupal\Core\Database\Query\Update + * @return $this * The called object. */ public function fields(array $fields) { @@ -98,7 +98,7 @@ public function fields(array $fields) { * If specified, this is an array of key/value pairs for named placeholders * corresponding to the expression. * - * @return \Drupal\Core\Database\Query\Update + * @return $this * The called object. */ public function expression($field, $expression, array $arguments = NULL) { diff --git a/core/lib/Drupal/Core/Entity/Query/ConditionAggregateInterface.php b/core/lib/Drupal/Core/Entity/Query/ConditionAggregateInterface.php index 383f41e4b716..c7480ed913cc 100644 --- a/core/lib/Drupal/Core/Entity/Query/ConditionAggregateInterface.php +++ b/core/lib/Drupal/Core/Entity/Query/ConditionAggregateInterface.php @@ -24,7 +24,7 @@ public function getConjunction(); * @param string $operator * @param string $langcode * - * @return \Drupal\Core\Entity\Query\ConditionAggregateInterface + * @return $this * The called object. * @see \Drupal\Core\Entity\Query\QueryInterface::condition() */ diff --git a/core/lib/Drupal/Core/Entity/Query/ConditionInterface.php b/core/lib/Drupal/Core/Entity/Query/ConditionInterface.php index 7c98c3466357..7b5f513f0fde 100644 --- a/core/lib/Drupal/Core/Entity/Query/ConditionInterface.php +++ b/core/lib/Drupal/Core/Entity/Query/ConditionInterface.php @@ -30,7 +30,9 @@ public function count(); * @param mixed $value * @param string $operator * @param string $langcode - * @return ConditionInterface + * + * @return $this + * * @see \Drupal\Core\Entity\Query\QueryInterface::condition() */ public function condition($field, $value = NULL, $operator = NULL, $langcode = NULL); @@ -40,7 +42,9 @@ public function condition($field, $value = NULL, $operator = NULL, $langcode = N * * @param string $field * @param string $langcode - * @return ConditionInterface + * + * @return $this + * * @see \Drupal\Core\Entity\Query\QueryInterface::exists() */ public function exists($field, $langcode = NULL); @@ -50,7 +54,9 @@ public function exists($field, $langcode = NULL); * * @param string $field * @param string $langcode - * @return ConditionInterface + * + * @return $this + * * @see \Drupal\Core\Entity\Query\QueryInterface::notExists() */ public function notExists($field, $langcode = NULL); diff --git a/core/lib/Drupal/Core/Entity/Query/QueryAggregateInterface.php b/core/lib/Drupal/Core/Entity/Query/QueryAggregateInterface.php index 3c94ba7c78b0..590c7d985d31 100644 --- a/core/lib/Drupal/Core/Entity/Query/QueryAggregateInterface.php +++ b/core/lib/Drupal/Core/Entity/Query/QueryAggregateInterface.php @@ -23,7 +23,7 @@ interface QueryAggregateInterface extends QueryInterface { * @param string $alias * (optional) The key that will be used on the resultset. * - * @return \Drupal\Core\Entity\Query\QueryAggregateInterface + * @return $this * The called object. */ public function aggregate($field, $function, $langcode = NULL, &$alias = NULL); @@ -34,7 +34,7 @@ public function aggregate($field, $function, $langcode = NULL, &$alias = NULL); * @param string $field * The name of the field to group by. * - * @return \Drupal\Core\Entity\Query\QueryAggregateInterface + * @return $this * The called object. */ public function groupBy($field); @@ -60,7 +60,7 @@ public function groupBy($field); * @param string $langcode * (optional) The language code. * - * @return \Drupal\Core\Entity\Query\QueryAggregateInterface + * @return $this * The called object. * * @see \Drupal\Core\Entity\Query\QueryInterface::condition() @@ -77,7 +77,7 @@ public function conditionAggregate($field, $function = NULL, $value = NULL, $ope * @param $langcode * (optional) The language code. * - * @return \Drupal\Core\Entity\Query\QueryAggregateInterface + * @return $this * The called object. */ public function existsAggregate($field, $function, $langcode = NULL); @@ -92,7 +92,7 @@ public function existsAggregate($field, $function, $langcode = NULL); * @param string $langcode * (optional) The language code. * - * @return \Drupal\Core\Entity\Query\QueryAggregateInterface + * @return $this * The called object. */ public function notExistsAggregate($field, $function, $langcode = NULL); @@ -124,7 +124,7 @@ public function conditionAggregateGroupFactory($conjunction = 'AND'); * @param string $langcode * (optional) The language code. * - * @return \Drupal\Core\Entity\Query\QueryAggregateInterface + * @return $this * The called object. */ public function sortAggregate($field, $function, $direction = 'ASC', $langcode = NULL); diff --git a/core/lib/Drupal/Core/Entity/Query/QueryInterface.php b/core/lib/Drupal/Core/Entity/Query/QueryInterface.php index d4b0608e8075..1d5ed5dbe7a6 100644 --- a/core/lib/Drupal/Core/Entity/Query/QueryInterface.php +++ b/core/lib/Drupal/Core/Entity/Query/QueryInterface.php @@ -94,7 +94,7 @@ public function getEntityTypeId(); * and another does not they are not presumed to apply to the same * translation. * - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * @see \Drupal\Core\Entity\Query\andConditionGroup * @see \Drupal\Core\Entity\Query\orConditionGroup */ @@ -107,7 +107,7 @@ public function condition($field, $value = NULL, $operator = NULL, $langcode = N * Name of a field. * @param $langcode * Language code (optional). - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this */ public function exists($field, $langcode = NULL); @@ -118,7 +118,7 @@ public function exists($field, $langcode = NULL); * Name of a field. * @param $langcode * Language code (optional). - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this */ public function notExists($field, $langcode = NULL); @@ -132,7 +132,7 @@ public function notExists($field, $langcode = NULL); * An optional integer to distinguish between multiple pagers on one page. * If not provided, one is automatically calculated. * - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * The called object. */ public function pager($limit = 10, $element = NULL); @@ -140,7 +140,7 @@ public function pager($limit = 10, $element = NULL); /** * @param null $start * @param null $length - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * The called object. */ public function range($start = NULL, $length = NULL); @@ -151,7 +151,7 @@ public function range($start = NULL, $length = NULL); * @param string $direction * @param $langcode * Language code (optional). - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * The called object. */ public function sort($field, $direction = 'ASC', $langcode = NULL); @@ -161,7 +161,7 @@ public function sort($field, $direction = 'ASC', $langcode = NULL); * * For count queries, execute() returns the number entities found. * - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * The called object. */ public function count(); @@ -175,13 +175,13 @@ public function count(); * specify what to sort on. This can be an entity or a field as described * in condition(). * - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * The called object. */ public function tableSort(&$headers); /** - * @return \Drupal\Core\Entity\Query\QueryInterface + * @return $this * The called object. */ public function accessCheck($access_check = TRUE); diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/Query.php b/core/lib/Drupal/Core/Entity/Query/Sql/Query.php index cd357c1c2acf..78a4a9719116 100644 --- a/core/lib/Drupal/Core/Entity/Query/Sql/Query.php +++ b/core/lib/Drupal/Core/Entity/Query/Sql/Query.php @@ -86,7 +86,7 @@ public function execute() { /** * Prepares the basic query with proper metadata/tags and base fields. * - * @return \Drupal\Core\Entity\Query\Sql\Query + * @return $this * Returns the called object. * * @throws \Drupal\Core\Entity\Query\QueryException @@ -165,7 +165,7 @@ protected function prepare() { /** * Compiles the conditions. * - * @return \Drupal\Core\Entity\Query\Sql\Query + * @return $this * Returns the called object. */ protected function compile() { @@ -176,7 +176,7 @@ protected function compile() { /** * Adds the sort to the build query. * - * @return \Drupal\Core\Entity\Query\Sql\Query + * @return $this * Returns the called object. */ protected function addSort() { @@ -234,7 +234,7 @@ protected function addSort() { /** * Finish the query by adding fields, GROUP BY and range. * - * @return \Drupal\Core\Entity\Query\Sql\Query + * @return $this * Returns the called object. */ protected function finish() { diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php b/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php index f865cf76ef81..3e263d838159 100644 --- a/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php +++ b/core/lib/Drupal/Core/Entity/Query/Sql/QueryAggregate.php @@ -68,7 +68,7 @@ public function notExistsAggregate($field, $function, $langcode = NULL) { /** * Adds the aggregations to the query. * - * @return \Drupal\Core\Entity\Query\Sql\QueryAggregate + * @return $this * Returns the called object. */ protected function addAggregate() { @@ -84,7 +84,7 @@ protected function addAggregate() { /** * Builds the aggregation conditions part of the query. * - * @return \Drupal\Core\Entity\Query\Sql\QueryAggregate + * @return $this * Returns the called object. */ protected function compileAggregate() { @@ -95,7 +95,7 @@ protected function compileAggregate() { /** * Adds the groupby values to the actual query. * - * @return \Drupal\Core\Entity\Query\Sql\QueryAggregate + * @return $this * Returns the called object. */ protected function addGroupBy() { @@ -113,7 +113,7 @@ protected function addGroupBy() { /** * Builds the aggregation sort part of the query. * - * @return \Drupal\Core\Entity\Query\Sql\QueryAggregate + * @return $this * Returns the called object. */ protected function addSortAggregate() { diff --git a/core/lib/Drupal/Core/Executable/ExecutablePluginBase.php b/core/lib/Drupal/Core/Executable/ExecutablePluginBase.php index 547724a50f6f..088bd3735bf0 100644 --- a/core/lib/Drupal/Core/Executable/ExecutablePluginBase.php +++ b/core/lib/Drupal/Core/Executable/ExecutablePluginBase.php @@ -72,7 +72,7 @@ public function getConfig() { * https://www.drupal.org/node/1764380. * @todo This does not set a value in \Drupal::config(), so the name is confusing. * - * @return \Drupal\Core\Executable\ExecutablePluginBase + * @return $this * The executable object for chaining. * * @throws \Drupal\Component\Plugin\Exception\PluginException diff --git a/core/lib/Drupal/Core/Form/EnforcedResponse.php b/core/lib/Drupal/Core/Form/EnforcedResponse.php index 46dfdca6f1cc..e70c4a195f27 100644 --- a/core/lib/Drupal/Core/Form/EnforcedResponse.php +++ b/core/lib/Drupal/Core/Form/EnforcedResponse.php @@ -37,7 +37,7 @@ class EnforcedResponse extends Response { * @param \Exception $e * The exception where the enforced response is to be extracted from. * - * @return \Drupal\Core\Form\EnforcedResponse|null + * @return static|null * The enforced response or NULL if the exception chain does not contain a * \Drupal\Core\Form\EnforcedResponseException exception. */ diff --git a/core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php b/core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php index 51867f4c3ff3..0f6e2184e2c2 100644 --- a/core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php +++ b/core/lib/Drupal/Core/ImageToolkit/ImageToolkitInterface.php @@ -52,7 +52,7 @@ interface ImageToolkitInterface extends ContainerFactoryPluginInterface, PluginI * @param string $source * The source path of the image file. * - * @return \Drupal\Core\ImageToolkit\ImageToolkitInterface + * @return $this * An instance of the current toolkit object. * * @throws \BadMethodCallException diff --git a/core/lib/Drupal/Core/Language/LanguageManagerInterface.php b/core/lib/Drupal/Core/Language/LanguageManagerInterface.php index eaefd18a276c..624b5b40239c 100644 --- a/core/lib/Drupal/Core/Language/LanguageManagerInterface.php +++ b/core/lib/Drupal/Core/Language/LanguageManagerInterface.php @@ -58,7 +58,7 @@ public function getCurrentLanguage($type = LanguageInterface::TYPE_INTERFACE); * LanguageInterface::TYPE_INTERFACE, or NULL to reset all language types. * Defaults to NULL. * - * @return \Drupal\Core\Language\LanguageManagerInterface + * @return $this * The language manager that has been reset. */ public function reset($type = NULL); diff --git a/core/lib/Drupal/Core/Menu/LocalTaskInterface.php b/core/lib/Drupal/Core/Menu/LocalTaskInterface.php index 7fb301edd414..31e0fd77d098 100644 --- a/core/lib/Drupal/Core/Menu/LocalTaskInterface.php +++ b/core/lib/Drupal/Core/Menu/LocalTaskInterface.php @@ -70,7 +70,7 @@ public function getOptions(RouteMatchInterface $route_match); * @param bool $active * Sets whether this tab is active (e.g. a parent of the current tab). * - * @return \Drupal\Core\Menu\LocalTaskInterface + * @return $this * The called object for chaining. */ public function setActive($active = TRUE); diff --git a/core/lib/Drupal/Core/Plugin/Context/EntityContext.php b/core/lib/Drupal/Core/Plugin/Context/EntityContext.php index 131360df26d8..c312ba87b326 100644 --- a/core/lib/Drupal/Core/Plugin/Context/EntityContext.php +++ b/core/lib/Drupal/Core/Plugin/Context/EntityContext.php @@ -51,7 +51,7 @@ public static function fromEntityType(EntityTypeInterface $entity_type, $label = * @param string $label * (optional) The label of the context. * - * @return \Drupal\Core\Plugin\Context\EntityContext + * @return static */ public static function fromEntity(EntityInterface $entity, $label = NULL) { $context = static::fromEntityType($entity->getEntityType(), $label); diff --git a/core/lib/Drupal/Core/Session/AccountSwitcherInterface.php b/core/lib/Drupal/Core/Session/AccountSwitcherInterface.php index 2f326093cb73..8bdd7b5a0ef5 100644 --- a/core/lib/Drupal/Core/Session/AccountSwitcherInterface.php +++ b/core/lib/Drupal/Core/Session/AccountSwitcherInterface.php @@ -19,7 +19,7 @@ interface AccountSwitcherInterface { * @param \Drupal\Core\Session\AccountInterface $account * The account to switch to. * - * @return \Drupal\Core\Session\AccountSwitcherInterface + * @return $this * $this. */ public function switchTo(AccountInterface $account); @@ -27,7 +27,7 @@ public function switchTo(AccountInterface $account); /** * Reverts to a previous account after switching. * - * @return \Drupal\Core\Session\AccountSwitcherInterface + * @return $this * $this. * * @throws \RuntimeException diff --git a/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php b/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php index 01c9fe652ce4..61df3dd54acf 100644 --- a/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php +++ b/core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php @@ -92,7 +92,7 @@ public function __construct($count, $singular, $plural, array $args = [], array * @param array $options * An associative array of additional options. See t() for allowed keys. * - * @return \Drupal\Core\StringTranslation\PluralTranslatableMarkup + * @return static * A PluralTranslatableMarkup object. */ public static function createFromTranslatedString($count, $translated_string, array $args = [], array $options = []) { diff --git a/core/lib/Drupal/Core/TypedData/ListDataDefinition.php b/core/lib/Drupal/Core/TypedData/ListDataDefinition.php index 001c58b28759..21406b9e21e1 100644 --- a/core/lib/Drupal/Core/TypedData/ListDataDefinition.php +++ b/core/lib/Drupal/Core/TypedData/ListDataDefinition.php @@ -20,7 +20,7 @@ class ListDataDefinition extends DataDefinition implements ListDataDefinitionInt * @param string $item_type * The data type of the list items; e.g., 'string', 'integer' or 'any'. * - * @return \Drupal\Core\TypedData\ListDataDefinition + * @return static * A new List Data Definition object. */ public static function create($item_type) { diff --git a/core/lib/Drupal/Core/TypedData/TypedDataInterface.php b/core/lib/Drupal/Core/TypedData/TypedDataInterface.php index a6892d24f3f8..f6da49d8c1e5 100644 --- a/core/lib/Drupal/Core/TypedData/TypedDataInterface.php +++ b/core/lib/Drupal/Core/TypedData/TypedDataInterface.php @@ -97,7 +97,7 @@ public function validate(); * TRUE. If a property is updated from a parent object, set it to FALSE to * avoid being notified again. * - * @return \Drupal\Core\TypedData\TypedDataInterface + * @return $this * Returns itself to allow for chaining. */ public function applyDefaultValue($notify = TRUE); diff --git a/core/lib/Drupal/Core/Url.php b/core/lib/Drupal/Core/Url.php index 71c305b59898..ea552bf4cb9f 100644 --- a/core/lib/Drupal/Core/Url.php +++ b/core/lib/Drupal/Core/Url.php @@ -133,7 +133,7 @@ public function __construct($route_name, $route_parameters = [], $options = []) * @param array $options * See \Drupal\Core\Url::fromUri() for details. * - * @return \Drupal\Core\Url + * @return static * A new Url object for a routed (internal to Drupal) URL. * * @see \Drupal\Core\Url::fromUserInput() @@ -149,7 +149,7 @@ public static function fromRoute($route_name, $route_parameters = [], $options = * @param \Drupal\Core\Routing\RouteMatchInterface $route_match * The route match. * - * @return $this + * @return static */ public static function fromRouteMatch(RouteMatchInterface $route_match) { if ($route_match->getRouteObject()) { @@ -254,7 +254,7 @@ public static function fromUserInput($user_input, $options = []) { * defined, the current scheme is used, so the user stays on HTTP or HTTPS * respectively. TRUE enforces HTTPS and FALSE enforces HTTP. * - * @return \Drupal\Core\Url + * @return static * A new Url object with properties depending on the URI scheme. Call the * access() method on this to do access checking. * @@ -333,7 +333,7 @@ public static function fromUri($uri, $options = []) { * @param string $uri * The original entered URI. * - * @return \Drupal\Core\Url + * @return static * A new Url object for an entity's canonical route. * * @throws \InvalidArgumentException @@ -383,7 +383,7 @@ protected static function fromEntityUri(array $uri_parts, array $options, $uri) * @param array $options * An array of options, see \Drupal\Core\Url::fromUri() for details. * - * @return \Drupal\Core\Url + * @return static * A new Url object for a 'internal:' URI. * * @throws \InvalidArgumentException @@ -432,7 +432,7 @@ protected static function fromInternalUri(array $uri_parts, array $options) { * @param string $uri * The original passed in URI. * - * @return \Drupal\Core\Url + * @return static * A new Url object for a 'route:' URI. * * @throws \InvalidArgumentException diff --git a/core/modules/aggregator/src/FeedInterface.php b/core/modules/aggregator/src/FeedInterface.php index 19bde2e43c27..6885eff14c7e 100644 --- a/core/modules/aggregator/src/FeedInterface.php +++ b/core/modules/aggregator/src/FeedInterface.php @@ -15,7 +15,7 @@ interface FeedInterface extends ContentEntityInterface { * @param string $title * The short title of the feed. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setTitle($title); @@ -34,7 +34,7 @@ public function getUrl(); * @param string $url * A string containing the url of the feed. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setUrl($url); @@ -53,7 +53,7 @@ public function getRefreshRate(); * @param int $refresh * The refresh rate of the feed in seconds. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setRefreshRate($refresh); @@ -72,7 +72,7 @@ public function getLastCheckedTime(); * @param int $checked * The timestamp of the last refresh. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setLastCheckedTime($checked); @@ -91,7 +91,7 @@ public function getQueuedTime(); * @param int $queued * The timestamp of the last refresh. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setQueuedTime($queued); @@ -110,7 +110,7 @@ public function getWebsiteUrl(); * @param string $link * A string containing the parent website of the feed. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setWebsiteUrl($link); @@ -129,7 +129,7 @@ public function getDescription(); * @param string $description * The description of the feed. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setDescription($description); @@ -148,7 +148,7 @@ public function getImage(); * @param string $image * An image URL. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setImage($image); @@ -168,7 +168,7 @@ public function getHash(); * A string containing the calculated hash of the feed. Must contain * US ASCII characters only. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setHash($hash); @@ -187,7 +187,7 @@ public function getEtag(); * @param string $etag * A string containing the entity tag HTTP response header. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setEtag($etag); @@ -206,7 +206,7 @@ public function getLastModified(); * @param int $modified * The timestamp when the feed was modified. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. */ public function setLastModified($modified); @@ -217,7 +217,7 @@ public function setLastModified($modified); * This will also reset the last checked and modified time of the feed and * save it. * - * @return \Drupal\aggregator\FeedInterface + * @return $this * The class instance that this method is called on. * * @see \Drupal\aggregator\ItemsImporterInterface::delete() diff --git a/core/modules/aggregator/src/ItemInterface.php b/core/modules/aggregator/src/ItemInterface.php index 8639ff87175d..090fc6507549 100644 --- a/core/modules/aggregator/src/ItemInterface.php +++ b/core/modules/aggregator/src/ItemInterface.php @@ -23,7 +23,7 @@ public function getFeedId(); * @param int $fid * The feed id. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setFeedId($fid); @@ -42,7 +42,7 @@ public function getTitle(); * @param string $title * The title of the feed item. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setTitle($title); @@ -61,7 +61,7 @@ public function getLink(); * @param string $link * The link to the feed item. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setLink($link); @@ -80,7 +80,7 @@ public function getAuthor(); * @param string $author * The author name of the feed item. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setAuthor($author); @@ -99,7 +99,7 @@ public function getDescription(); * @param string $description * The body of the feed item. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setDescription($description); @@ -118,7 +118,7 @@ public function getPostedTime(); * @param int $timestamp * The posted date of the feed item, as a Unix timestamp. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setPostedTime($timestamp); @@ -137,7 +137,7 @@ public function getGuid(); * @param string $guid * The unique identifier for the feed item. * - * @return \Drupal\aggregator\ItemInterface + * @return $this * The called feed item entity. */ public function setGuid($guid); diff --git a/core/modules/block_content/src/BlockContentInterface.php b/core/modules/block_content/src/BlockContentInterface.php index bba6e4663d5b..ec44dfbb57ed 100644 --- a/core/modules/block_content/src/BlockContentInterface.php +++ b/core/modules/block_content/src/BlockContentInterface.php @@ -30,7 +30,7 @@ public function getRevisionLog(); * @param string $info * The block description. * - * @return \Drupal\block_content\BlockContentInterface + * @return $this * The class instance that this method is called on. */ public function setInfo($info); @@ -41,7 +41,7 @@ public function setInfo($info); * @param string $revision_log * The revision log message. * - * @return \Drupal\block_content\BlockContentInterface + * @return $this * The class instance that this method is called on. * * @deprecated in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use @@ -81,7 +81,7 @@ public function setNonReusable(); * @param string $theme * The theme name. * - * @return \Drupal\block_content\BlockContentInterface + * @return $this * The class instance that this method is called on. */ public function setTheme($theme); diff --git a/core/modules/image/src/ImageStyleInterface.php b/core/modules/image/src/ImageStyleInterface.php index 8430fdc2f704..b6970fdbde1d 100644 --- a/core/modules/image/src/ImageStyleInterface.php +++ b/core/modules/image/src/ImageStyleInterface.php @@ -37,7 +37,7 @@ public function getName(); * @param string $name * The name of the image style. * - * @return \Drupal\image\ImageStyleInterface + * @return $this * The class instance this method is called on. */ public function setName($name); diff --git a/core/modules/jsonapi/src/JsonApiResource/Data.php b/core/modules/jsonapi/src/JsonApiResource/Data.php index c050835b1df8..57dd0ad675a1 100644 --- a/core/modules/jsonapi/src/JsonApiResource/Data.php +++ b/core/modules/jsonapi/src/JsonApiResource/Data.php @@ -148,7 +148,7 @@ public function getCardinality() { * @param \Drupal\jsonapi\JsonApiResource\Data $b * A Data object to be merged. * - * @return \Drupal\jsonapi\JsonApiResource\Data + * @return static * A new merged Data object. */ public static function merge(Data $a, Data $b) { diff --git a/core/modules/jsonapi/src/Query/OffsetPage.php b/core/modules/jsonapi/src/Query/OffsetPage.php index e620ca8e6118..70a752ef2c3a 100644 --- a/core/modules/jsonapi/src/Query/OffsetPage.php +++ b/core/modules/jsonapi/src/Query/OffsetPage.php @@ -104,7 +104,7 @@ public function getSize() { * @param mixed $parameter * The `page` query parameter from the Symfony request object. * - * @return \Drupal\jsonapi\Query\OffsetPage + * @return static * An OffsetPage object with defaults. */ public static function createFromQueryParameter($parameter) { diff --git a/core/modules/locale/src/StringStorageInterface.php b/core/modules/locale/src/StringStorageInterface.php index 18c5edc2b694..51dd7d5e404d 100644 --- a/core/modules/locale/src/StringStorageInterface.php +++ b/core/modules/locale/src/StringStorageInterface.php @@ -101,7 +101,7 @@ public function findTranslation(array $conditions); * @param \Drupal\locale\StringInterface $string * The string object. * - * @return \Drupal\locale\StringStorageInterface + * @return $this * The called object. * * @throws \Drupal\locale\StringStorageException @@ -115,7 +115,7 @@ public function save($string); * @param \Drupal\locale\StringInterface $string * The string object. * - * @return \Drupal\locale\StringStorageInterface + * @return $this * The called object. * * @throws \Drupal\locale\StringStorageException diff --git a/core/modules/locale/src/TranslationString.php b/core/modules/locale/src/TranslationString.php index 63f4543cb5dc..c32d23f2d25f 100644 --- a/core/modules/locale/src/TranslationString.php +++ b/core/modules/locale/src/TranslationString.php @@ -58,7 +58,7 @@ public function __construct($values = []) { * @param bool $customized * (optional) Whether the string is customized or not. Defaults to TRUE. * - * @return \Drupal\locale\TranslationString + * @return $this * The called object. */ public function setCustomized($customized = TRUE) { diff --git a/core/modules/media/src/MediaInterface.php b/core/modules/media/src/MediaInterface.php index 912bf97f3ebb..3aeaef56ab25 100644 --- a/core/modules/media/src/MediaInterface.php +++ b/core/modules/media/src/MediaInterface.php @@ -51,7 +51,7 @@ public function getCreatedTime(); * @param int $timestamp * The media creation timestamp. * - * @return \Drupal\media\MediaInterface + * @return $this * The called media item. */ public function setCreatedTime($timestamp); diff --git a/core/modules/media_library/src/MediaLibraryState.php b/core/modules/media_library/src/MediaLibraryState.php index c29b6e936fc5..11621ee5c2ef 100644 --- a/core/modules/media_library/src/MediaLibraryState.php +++ b/core/modules/media_library/src/MediaLibraryState.php @@ -71,7 +71,7 @@ public function __construct(array $parameters = []) { * @param array $opener_parameters * (optional) Any additional opener-specific parameter values. * - * @return \Drupal\media_library\MediaLibraryState + * @return static * A state object. */ public static function create($opener_id, array $allowed_media_type_ids, $selected_type_id, $remaining_slots, array $opener_parameters = []) { @@ -91,7 +91,7 @@ public static function create($opener_id, array $allowed_media_type_ids, $select * @param \Symfony\Component\HttpFoundation\Request $request * The request. * - * @return \Drupal\media_library\MediaLibraryState + * @return static * A state object. * * @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException diff --git a/core/modules/node/src/NodeInterface.php b/core/modules/node/src/NodeInterface.php index ae5a786dd8c7..fc88507d04dd 100644 --- a/core/modules/node/src/NodeInterface.php +++ b/core/modules/node/src/NodeInterface.php @@ -65,7 +65,7 @@ public function getTitle(); * @param string $title * The node title. * - * @return \Drupal\node\NodeInterface + * @return $this * The called node entity. */ public function setTitle($title); @@ -84,7 +84,7 @@ public function getCreatedTime(); * @param int $timestamp * The node creation timestamp. * - * @return \Drupal\node\NodeInterface + * @return $this * The called node entity. */ public function setCreatedTime($timestamp); @@ -103,7 +103,7 @@ public function isPromoted(); * @param bool $promoted * TRUE to set this node to promoted, FALSE to set it to not promoted. * - * @return \Drupal\node\NodeInterface + * @return $this * The called node entity. */ public function setPromoted($promoted); @@ -122,7 +122,7 @@ public function isSticky(); * @param bool $sticky * TRUE to set this node to sticky, FALSE to set it to not sticky. * - * @return \Drupal\node\NodeInterface + * @return $this * The called node entity. */ public function setSticky($sticky); @@ -141,7 +141,7 @@ public function getRevisionCreationTime(); * @param int $timestamp * The UNIX timestamp of when this revision was created. * - * @return \Drupal\node\NodeInterface + * @return $this * The called node entity. */ public function setRevisionCreationTime($timestamp); @@ -165,7 +165,7 @@ public function getRevisionAuthor(); * @param int $uid * The user ID of the revision author. * - * @return \Drupal\node\NodeInterface + * @return $this * The called node entity. * * @deprecated in drupal:8.2.0 and is removed from drupal:9.0.0. Use diff --git a/core/modules/search/src/Plugin/SearchInterface.php b/core/modules/search/src/Plugin/SearchInterface.php index 8f95ce824664..b1421ff0c3f7 100644 --- a/core/modules/search/src/Plugin/SearchInterface.php +++ b/core/modules/search/src/Plugin/SearchInterface.php @@ -21,7 +21,7 @@ interface SearchInterface extends PluginInspectionInterface { * @param array $attributes * Array of attributes, usually from the current request object. * - * @return \Drupal\search\Plugin\SearchInterface + * @return $this * A search plugin object for chaining. */ public function setSearch($keywords, array $parameters, array $attributes); diff --git a/core/modules/shortcut/src/ShortcutInterface.php b/core/modules/shortcut/src/ShortcutInterface.php index e434266eec0e..d095bfc7f5b2 100644 --- a/core/modules/shortcut/src/ShortcutInterface.php +++ b/core/modules/shortcut/src/ShortcutInterface.php @@ -23,7 +23,7 @@ public function getTitle(); * @param string $title * The title of this shortcut. * - * @return \Drupal\shortcut\ShortcutInterface + * @return $this * The called shortcut entity. */ public function setTitle($title); @@ -42,7 +42,7 @@ public function getWeight(); * @param int $weight * The shortcut weight. * - * @return \Drupal\shortcut\ShortcutInterface + * @return $this * The called shortcut entity. */ public function setWeight($weight); diff --git a/core/modules/shortcut/src/ShortcutSetInterface.php b/core/modules/shortcut/src/ShortcutSetInterface.php index 3ad5e696c588..8b8cf45ea60b 100644 --- a/core/modules/shortcut/src/ShortcutSetInterface.php +++ b/core/modules/shortcut/src/ShortcutSetInterface.php @@ -16,7 +16,7 @@ interface ShortcutSetInterface extends ConfigEntityInterface { * to the set. If the link is added to the end of the array and this function * is called, it will force that link to display at the end of the list. * - * @return \Drupal\shortcut\ShortcutSetInterface + * @return $this * The shortcut set. */ public function resetLinkWeights(); diff --git a/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php b/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php index 21ea15967a98..c07c9cf3c500 100644 --- a/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php +++ b/core/modules/system/src/Plugin/ImageToolkit/GDToolkit.php @@ -131,7 +131,7 @@ public static function create(ContainerInterface $container, array $configuratio * @param resource $resource * The GD image resource. * - * @return \Drupal\system\Plugin\ImageToolkit\GDToolkit + * @return $this * An instance of the current toolkit object. */ public function setResource($resource) { diff --git a/core/modules/update/tests/modules/update_test/src/TestFileTransferWithSettingsForm.php b/core/modules/update/tests/modules/update_test/src/TestFileTransferWithSettingsForm.php index 5b0d6c303f4b..5e3e129fec6f 100644 --- a/core/modules/update/tests/modules/update_test/src/TestFileTransferWithSettingsForm.php +++ b/core/modules/update/tests/modules/update_test/src/TestFileTransferWithSettingsForm.php @@ -18,7 +18,7 @@ class TestFileTransferWithSettingsForm extends Local { /** * Returns a Drupal\update_test\TestFileTransferWithSettingsForm object. * - * @return \Drupal\update_test\TestFileTransferWithSettingsForm + * @return static * A new Drupal\update_test\TestFileTransferWithSettingsForm object. */ public static function factory($jail, $settings) { diff --git a/core/modules/user/src/UserInterface.php b/core/modules/user/src/UserInterface.php index 6919e0d7b4ba..64cbc19b9aa0 100644 --- a/core/modules/user/src/UserInterface.php +++ b/core/modules/user/src/UserInterface.php @@ -83,7 +83,7 @@ public function removeRole($rid); * @param string $username * The new user name. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function setUsername($username); @@ -102,7 +102,7 @@ public function getPassword(); * @param string $password * The new unhashed password. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function setPassword($password); @@ -113,7 +113,7 @@ public function setPassword($password); * @param string $mail * The new email address of the user. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function setEmail($mail); @@ -132,7 +132,7 @@ public function getCreatedTime(); * @param int $timestamp * Timestamp of the last access. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function setLastAccessTime($timestamp); @@ -151,7 +151,7 @@ public function getLastLoginTime(); * @param int $timestamp * Timestamp of the last login time. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function setLastLoginTime($timestamp); @@ -175,7 +175,7 @@ public function isBlocked(); /** * Activates the user. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function activate(); @@ -183,7 +183,7 @@ public function activate(); /** * Blocks the user. * - * @return \Drupal\user\UserInterface + * @return $this * The called user entity. */ public function block(); diff --git a/core/modules/workflows/src/WorkflowTypeInterface.php b/core/modules/workflows/src/WorkflowTypeInterface.php index e07d65d0f65d..457b28c49ecc 100644 --- a/core/modules/workflows/src/WorkflowTypeInterface.php +++ b/core/modules/workflows/src/WorkflowTypeInterface.php @@ -177,7 +177,7 @@ public function setStateWeight($state_id, $weight); * @param string $state_id * The state ID to delete. * - * @return \Drupal\workflows\WorkflowTypeInterface + * @return $this * The workflow type plugin. * * @throws \InvalidArgumentException -- GitLab