Commit 58ee3dd2 authored by catch's avatar catch
Browse files

Issue #3443117 by bbrala, longwave, quietone: Fix...

Issue #3443117 by bbrala, longwave, quietone: Fix Drupal.Functions.MultiLineFunctionDeclaration coding standard

(cherry picked from commit b41dfccb)
parent 55463c9e
Loading
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -5242,16 +5242,16 @@
        },
        {
            "name": "drupal/coder",
            "version": "8.3.23",
            "version": "8.3.24",
            "source": {
                "type": "git",
                "url": "https://github.com/pfrenssen/coder.git",
                "reference": "1a1613d83c08dac5be593f2775c9eccae1b41805"
                "reference": "1a59890f972db5da091354f0191dec1037f7c582"
            },
            "dist": {
                "type": "zip",
                "url": "https://api.github.com/repos/pfrenssen/coder/zipball/1a1613d83c08dac5be593f2775c9eccae1b41805",
                "reference": "1a1613d83c08dac5be593f2775c9eccae1b41805",
                "url": "https://api.github.com/repos/pfrenssen/coder/zipball/1a59890f972db5da091354f0191dec1037f7c582",
                "reference": "1a59890f972db5da091354f0191dec1037f7c582",
                "shasum": ""
            },
            "require": {
@@ -5260,7 +5260,7 @@
                "php": ">=7.2",
                "sirbrillig/phpcs-variable-analysis": "^2.11.7",
                "slevomat/coding-standard": "^8.11",
                "squizlabs/php_codesniffer": "^3.7.1",
                "squizlabs/php_codesniffer": "^3.9.1",
                "symfony/yaml": ">=3.4.0"
            },
            "require-dev": {
@@ -5289,7 +5289,7 @@
                "issues": "https://www.drupal.org/project/issues/coder",
                "source": "https://www.drupal.org/project/coder"
            },
            "time": "2024-01-27T18:13:12+00:00"
            "time": "2024-04-21T06:13:24+00:00"
        },
        {
            "name": "google/protobuf",
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
        "composer/xdebug-handler": "3.0.4",
        "dealerdirect/phpcodesniffer-composer-installer": "v1.0.0",
        "doctrine/instantiator": "2.0.0",
        "drupal/coder": "8.3.23",
        "drupal/coder": "8.3.24",
        "google/protobuf": "v3.25.3",
        "justinrainbow/json-schema": "v5.2.13",
        "lullabot/mink-selenium2-driver": "v1.7.2",
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ abstract class AttributeBase implements AttributeInterface {
   *   The attribute class ID.
   */
  public function __construct(
    protected readonly string $id
    protected readonly string $id,
  ) {}

  /**
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ class Plugin extends AttributeBase {
   */
  public function __construct(
    public readonly string $id,
    public readonly ?string $deriver = NULL
    public readonly ?string $deriver = NULL,
  ) {}

}
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ class AttributeBridgeDecorator implements DiscoveryInterface {
   */
  public function __construct(
    protected readonly DiscoveryInterface $decorated,
    protected readonly string $pluginDefinitionAttributeName
    protected readonly string $pluginDefinitionAttributeName,
  ) {}

  /**
Loading