diff --git a/composer/Composer.php b/composer/Composer.php index 7f83591934cd4e9b7dd33ede8b8c6b88c4a098d8..d3a87090bfde83fb209776c56b705054dd40e2d2 100644 --- a/composer/Composer.php +++ b/composer/Composer.php @@ -85,6 +85,7 @@ protected static function setTemplateProjectStability(string $root, string $vers /** * Ensure that the minimum required version of Composer is running. + * * Throw an exception if Composer is too old. */ public static function ensureComposerVersion(): void { diff --git a/core/includes/form.inc b/core/includes/form.inc index 9cd5f91daa0b49a6da0ae4d6190754204389f2af..5959b598e8ed0ae91698e53073a45fa37f2119cb 100644 --- a/core/includes/form.inc +++ b/core/includes/form.inc @@ -397,6 +397,7 @@ function template_preprocess_textarea(&$variables) { /** * Returns HTML for a form element. + * * Prepares variables for form element templates. * * Default template: form-element.html.twig. diff --git a/core/lib/Drupal/Core/Link.php b/core/lib/Drupal/Core/Link.php index 91718a687c93224a0bc0778f31b6b710d0bd1300..d382ef6cd828cbfbe31c18ffa0cf616909d12320 100644 --- a/core/lib/Drupal/Core/Link.php +++ b/core/lib/Drupal/Core/Link.php @@ -19,10 +19,12 @@ class Link implements RenderableInterface { /** * The link text for the anchor tag as a translated string or render array. + * * Strings will be sanitized automatically. If you need to output HTML in * the link text, use a render array or an already sanitized string such as * the output of \Drupal\Component\Utility\Xss::filter() or * \Drupal\Component\Render\FormattableMarkup. + * * @var string|array|\Drupal\Component\Render\MarkupInterface */ protected $text; diff --git a/core/lib/Drupal/Core/TypedData/Annotation/DataType.php b/core/lib/Drupal/Core/TypedData/Annotation/DataType.php index 83444a9d087e7c134c5eb45d68b2f3944d414799..a524a446f446b14e76d165dab01e4a4adc63c355 100644 --- a/core/lib/Drupal/Core/TypedData/Annotation/DataType.php +++ b/core/lib/Drupal/Core/TypedData/Annotation/DataType.php @@ -60,6 +60,7 @@ class DataType extends Plugin { /** * The definition class to use for defining data of this type. + * * Must implement the \Drupal\Core\TypedData\DataDefinitionInterface. * * @var string @@ -68,6 +69,7 @@ class DataType extends Plugin { /** * The typed data class used for wrapping multiple data items of the type. + * * Must implement the \Drupal\Core\TypedData\ListInterface. * * @var string @@ -76,6 +78,7 @@ class DataType extends Plugin { /** * The definition class to use for defining a list of items of this type. + * * Must implement the \Drupal\Core\TypedData\ListDataDefinitionInterface. * * @var string diff --git a/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php b/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php index 86baa02652848b84e2138cef0e05308464e5162c..d2120571a23903bd942fab3ee04c82a7379d95ca 100644 --- a/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php +++ b/core/modules/system/tests/src/Functional/Datetime/DrupalDateTimeTest.php @@ -47,6 +47,7 @@ public function testSystemTimezone() { /** * Tests that DrupalDateTime can detect the right timezone to use. + * * Test with a variety of less commonly used timezone names to * help ensure that the system timezone will be different than the * stated timezones. diff --git a/core/modules/views/src/ManyToOneHelper.php b/core/modules/views/src/ManyToOneHelper.php index ad659a3626a6c31bd578cedc84a867d70f4d09fa..6d47212a895dda340b50c6f9aa7dcdd760a14c73 100644 --- a/core/modules/views/src/ManyToOneHelper.php +++ b/core/modules/views/src/ManyToOneHelper.php @@ -151,6 +151,7 @@ public function summaryJoin() { /** * Override ensureMyTable so we can control how this joins in. + * * The operator actually has influence over joining. */ public function ensureMyTable() { diff --git a/core/modules/views/src/Plugin/views/HandlerBase.php b/core/modules/views/src/Plugin/views/HandlerBase.php index 311c98550fca6b15404720710c213130ea6ac3e2..582e77f57dea05162da753c509e37a5910cb386c 100644 --- a/core/modules/views/src/Plugin/views/HandlerBase.php +++ b/core/modules/views/src/Plugin/views/HandlerBase.php @@ -350,6 +350,7 @@ public function buildGroupByForm(&$form, FormStateInterface $form_state) { /** * Perform any necessary changes to the form values prior to storage. + * * There is no need for this function to actually store the data. */ public function submitGroupByForm(&$form, FormStateInterface $form_state) { @@ -381,6 +382,7 @@ public function validateExtraOptionsForm($form, FormStateInterface $form_state) /** * Perform any necessary changes to the form values prior to storage. + * * There is no need for this function to actually store the data. */ public function submitExtraOptionsForm($form, FormStateInterface $form_state) {} @@ -430,6 +432,7 @@ public function validateExposeForm($form, FormStateInterface $form_state) {} /** * Perform any necessary changes to the form exposes prior to storage. + * * There is no need for this function to actually store the data. */ public function submitExposeForm($form, FormStateInterface $form_state) {} @@ -566,6 +569,7 @@ public function isAGroup() { /** * Define if the exposed input has to be submitted multiple times. + * * This is TRUE when exposed filters grouped are using checkboxes as * widgets. */ diff --git a/core/modules/views/src/Plugin/views/display/Attachment.php b/core/modules/views/src/Plugin/views/display/Attachment.php index 7dbbb2f88600e7385094638f432035bcf2f6cfca..288696d217bf410038872f0a8f84c413fdeb1302 100644 --- a/core/modules/views/src/Plugin/views/display/Attachment.php +++ b/core/modules/views/src/Plugin/views/display/Attachment.php @@ -212,6 +212,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { /** * Perform any necessary changes to the form values prior to storage. + * * There is no need for this function to actually store the data. */ public function submitOptionsForm(&$form, FormStateInterface $form_state) { diff --git a/core/modules/views/src/Plugin/views/display/Block.php b/core/modules/views/src/Plugin/views/display/Block.php index 306ee20560e43d99c7c1191c9d6f58a83f60e764..00bdf1a10b843513843b988f09a623811860802f 100644 --- a/core/modules/views/src/Plugin/views/display/Block.php +++ b/core/modules/views/src/Plugin/views/display/Block.php @@ -251,6 +251,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { /** * Perform any necessary changes to the form values prior to storage. + * * There is no need for this function to actually store the data. */ public function submitOptionsForm(&$form, FormStateInterface $form_state) { diff --git a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php index 0fe56cbc65e89267ee61da5f31cf330739c70c03..98351f05ce33beb42baa3cd60292ae999123df21 100644 --- a/core/modules/views/src/Plugin/views/field/FieldPluginBase.php +++ b/core/modules/views/src/Plugin/views/field/FieldPluginBase.php @@ -53,12 +53,14 @@ abstract class FieldPluginBase extends HandlerBase implements FieldHandlerInterf /** * Indicator of the renderText() method for rendering a single item. + * * (If no render_item() is present). */ const RENDER_TEXT_PHASE_SINGLE_ITEM = 0; /** * Indicator of the renderText() method for rendering the whole element. + * * (if no render_item() method is available). */ const RENDER_TEXT_PHASE_COMPLETELY = 1; diff --git a/core/modules/views/src/Plugin/views/field/PrerenderList.php b/core/modules/views/src/Plugin/views/field/PrerenderList.php index 4ed091f810d51e3f64209291dc2ac426604cd3a7..06f9a21356e01c11d76aa164d765d52df380ebc8 100644 --- a/core/modules/views/src/Plugin/views/field/PrerenderList.php +++ b/core/modules/views/src/Plugin/views/field/PrerenderList.php @@ -19,6 +19,7 @@ abstract class PrerenderList extends FieldPluginBase implements MultiItemsFieldH /** * Stores all items which are used to render the items. + * * It should be keyed first by the id of the base table, for example nid. * The second key is the id of the thing which is displayed multiple times * per row, for example the tid. diff --git a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php index 3e5370beebde057e87fb896b0c8296a3332cc431..b048d8e281f3bbc82e33db6b15448f6103808371 100644 --- a/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php +++ b/core/modules/views/src/Plugin/views/filter/FilterPluginBase.php @@ -185,6 +185,7 @@ public function canExpose() { /** * Determine if a filter can be converted into a group. + * * Only exposed filters with operators available can be converted into groups. */ protected function canBuildGroup() { @@ -200,6 +201,7 @@ public function isAGroup() { /** * Provide the basic form which calls through to subforms. + * * If overridden, it is best to call through to the parent, * or to at least make sure all of the functions in this form * are called. @@ -1435,6 +1437,7 @@ public function multipleExposedInput() { /** * If set to remember exposed input in the session, store it there. + * * This function is similar to storeExposedInput but modified to * work properly when the filter is a group. */ diff --git a/core/modules/views/src/Plugin/views/query/Sql.php b/core/modules/views/src/Plugin/views/query/Sql.php index 3c584ba9761df5ab99eec4d68b843ad33a788280..40de924609ac18956590ae391447d6d433ebcef2 100644 --- a/core/modules/views/src/Plugin/views/query/Sql.php +++ b/core/modules/views/src/Plugin/views/query/Sql.php @@ -973,6 +973,7 @@ public function addWhereExpression($group, $snippet, $args = []) { /** * Add a complex HAVING clause to the query. + * * The caller is responsible for ensuring that all fields are fully qualified * (TABLE.FIELD) and that the table and an appropriate GROUP BY already exist in the query. * Internally the dbtng method "having" is used. diff --git a/core/modules/views/src/Plugin/views/row/Fields.php b/core/modules/views/src/Plugin/views/row/Fields.php index 20b4229506e0dff8e91000a5225bee1688206f76..647ddce89fc6678707229c0b18ee2da5883cb8ea 100644 --- a/core/modules/views/src/Plugin/views/row/Fields.php +++ b/core/modules/views/src/Plugin/views/row/Fields.php @@ -94,6 +94,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) { /** * Perform any necessary changes to the form values prior to storage. + * * There is no need for this function to actually store the data. */ public function submitOptionsForm(&$form, FormStateInterface $form_state) { diff --git a/core/modules/views/src/Plugin/views/row/RowPluginBase.php b/core/modules/views/src/Plugin/views/row/RowPluginBase.php index e3d2c5893389d060394906388e9bdd329b926ef1..0a3e091aca1785ed43b85465ea9ce0b80416e028 100644 --- a/core/modules/views/src/Plugin/views/row/RowPluginBase.php +++ b/core/modules/views/src/Plugin/views/row/RowPluginBase.php @@ -126,6 +126,7 @@ public function validateOptionsForm(&$form, FormStateInterface $form_state) {} /** * Perform any necessary changes to the form values prior to storage. + * * There is no need for this function to actually store the data. */ public function submitOptionsForm(&$form, FormStateInterface $form_state) {} diff --git a/core/tests/Drupal/KernelTests/Core/Database/FetchTest.php b/core/tests/Drupal/KernelTests/Core/Database/FetchTest.php index c692fa56f54af26bfc232db5ee03bc83f1c0c5c8..f98a08908465513f5dc8f07574f8dea7f4a642cd 100644 --- a/core/tests/Drupal/KernelTests/Core/Database/FetchTest.php +++ b/core/tests/Drupal/KernelTests/Core/Database/FetchTest.php @@ -99,6 +99,7 @@ public function testQueryFetchObjectClass() { /** * Confirms that we can fetch a record into a new instance of a custom class. + * * The name of the class is determined from a value of the first column. * * @see \Drupal\Tests\system\Functional\Database\FakeRecord diff --git a/core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php b/core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php index 95120187bf7dc50dbeb3983907caf6ed5630211d..0366c06b7bc0f3372cf9c165bf6cea779e71354c 100644 --- a/core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php +++ b/core/tests/Drupal/Tests/Component/Datetime/DateTimePlusTest.php @@ -270,6 +270,7 @@ public function testInvalidDates($input, $timezone, $format, $message, $class) { /** * Tests that DrupalDateTime can detect the right timezone to use. + * * When specified or not. * * @param mixed $input