From cf5f35c2890f05ec1e4cb07b7bb2c26db2afa3c1 Mon Sep 17 00:00:00 2001
From: xjm <xjm@65776.no-reply.drupal.org>
Date: Sun, 30 Jan 2022 01:12:38 -0600
Subject: [PATCH] Revert "Issue #3172166 by Pooja Ganjage, ekes, Megha_kundar,
 tstoeckler, mbovan, Spokje, alexpott: Element::properties() produces notices
 if given an array with integer keys"

This reverts commit 60a4206017128e8f258eb79aa9091663eb9e2520.
---
 core/lib/Drupal/Core/Render/Element.php             | 2 +-
 core/tests/Drupal/Tests/Core/Render/ElementTest.php | 4 ----
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/core/lib/Drupal/Core/Render/Element.php b/core/lib/Drupal/Core/Render/Element.php
index 75c3ab740174..dfd4eb099d36 100644
--- a/core/lib/Drupal/Core/Render/Element.php
+++ b/core/lib/Drupal/Core/Render/Element.php
@@ -24,7 +24,7 @@ class Element {
    *   TRUE of the key is a property, FALSE otherwise.
    */
   public static function property($key) {
-    return is_string($key) && $key[0] == '#';
+    return $key[0] == '#';
   }
 
   /**
diff --git a/core/tests/Drupal/Tests/Core/Render/ElementTest.php b/core/tests/Drupal/Tests/Core/Render/ElementTest.php
index 5de025b37192..a09cb3f61feb 100644
--- a/core/tests/Drupal/Tests/Core/Render/ElementTest.php
+++ b/core/tests/Drupal/Tests/Core/Render/ElementTest.php
@@ -19,7 +19,6 @@ public function testProperty() {
     $this->assertTrue(Element::property('#property'));
     $this->assertFalse(Element::property('property'));
     $this->assertFalse(Element::property('property#'));
-    $this->assertFalse(Element::property(0));
   }
 
   /**
@@ -30,16 +29,13 @@ public function testProperties() {
       '#property1' => 'property1',
       '#property2' => 'property2',
       'property3' => 'property3',
-      0 => [],
     ];
 
     $properties = Element::properties($element);
 
-    $this->assertCount(2, $properties);
     $this->assertContains('#property1', $properties);
     $this->assertContains('#property2', $properties);
     $this->assertNotContains('property3', $properties);
-    $this->assertNotContains(0, $properties);
   }
 
   /**
-- 
GitLab