Skip to content
Snippets Groups Projects
Verified Commit b450cb38 authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3477599 by quietone: Fix Drupal.Commenting.VariableComment.Missing

parent 2dc84b0e
No related branches found
No related tags found
2 merge requests!11197Issue #3506427 by eduardo morales alberti: Remove responsive_image.ajax from hook,!10223132456: Fix issue where views instances are emptied before an ajax request is complete
Pipeline #411035 passed with warnings
Pipeline: drupal

#411038

    ......@@ -34,8 +34,6 @@ class BlockUiTest extends BrowserTestBase {
    */
    protected $defaultTheme = 'stark';
    protected $regions;
    /**
    * The submitted block values used by this test.
    *
    ......
    ......@@ -16,7 +16,6 @@
    class LocaleUpdateCronTest extends LocaleUpdateBase {
    use CronRunTrait;
    protected $batchOutput = [];
    /**
    * {@inheritdoc}
    ......
    ......@@ -14,6 +14,9 @@
    */
    class NavigationTopBarContentModerationTest extends ModerationStateTestBase {
    /**
    * {@inheritdoc}
    */
    protected $defaultTheme = 'stark';
    /**
    ......
    ......@@ -51,7 +51,7 @@ public function __construct() {}
    /**
    * {@inheritdoc}
    */
    // phpcs:ignore DrupalPractice.CodeAnalysis.VariableAnalysis.UnusedVariable
    // phpcs:ignore DrupalPractice.CodeAnalysis.VariableAnalysis.UnusedVariable, Drupal.Commenting.VariableComment.Missing
    protected string $type = 'test';
    };
    $failure_marker->write($stage, $message);
    ......
    ......@@ -115,6 +115,9 @@ public function testDefaultSiteDirectoryPermissions(): void {
    */
    class TestSiteConfigurationExcluder extends SiteConfigurationExcluder {
    /**
    * The site path.
    */
    public string $sitePath;
    }
    ......@@ -13,8 +13,14 @@
    */
    class LegacyHookTest extends BrowserTestBase {
    /**
    * {@inheritdoc}
    */
    protected static $modules = ['legacy_hook_test'];
    /**
    * {@inheritdoc}
    */
    protected $defaultTheme = 'stark';
    public function testLegacyHook(): void {
    ......
    ......@@ -30,7 +30,6 @@ class PageTitleTest extends BrowserTestBase {
    * The test user.
    */
    protected $contentUser;
    protected $savedTitle;
    /**
    * Implement setUp().
    ......
    ......@@ -21,7 +21,6 @@ class HandlerFilterPermissionTest extends UserKernelTestBase {
    * @var array
    */
    public static $testViews = ['test_filter_permission'];
    protected $columnMap;
    /**
    * Tests the permission filter handler.
    ......
    ......@@ -109,11 +109,6 @@
    <!-- Sniff for: DuplicateVar, EmptyVar, IncorrectVarType, InlineVariableName, WrongStyle -->
    <exclude name="Drupal.Commenting.VariableComment.MissingVar"/>
    </rule>
    <rule ref="Drupal.Commenting.VariableComment.Missing">
    <include-pattern>./core/tests/*</include-pattern>
    <exclude-pattern>./core/*/tests/*</exclude-pattern>
    <include-pattern>core/modules/*/tests/modules/*</include-pattern>
    </rule>
    <rule ref="Drupal.ControlStructures.ControlSignature"/>
    <rule ref="Drupal.ControlStructures.ElseIf"/>
    <rule ref="Drupal.ControlStructures.InlineControlStructure"/>
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment