Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / psy / psysh / src / Command / ListCommand / GlobalVariableEnumerator.php
index 8e58af8b0e31f744dcb52bcf4c9461403a465c00..f51791cb6dcff9b3d3f351d1777367c6365f6802 100644 (file)
@@ -53,8 +53,8 @@ class GlobalVariableEnumerator extends Enumerator
     {
         global $GLOBALS;
 
-        $names = array_keys($GLOBALS);
-        natcasesort($names);
+        $names = \array_keys($GLOBALS);
+        \natcasesort($names);
 
         $ret = [];
         foreach ($names as $name) {