🐛 | Live Weather | ArgumentCountError: Too few arguments to function Drupal\live_weather\LiveWeather::__construct(), 2 passed
riteshgupta → created an issue.
I am facing the same issue for 1.0.0-rc8
Following code will resolve the issue. Update this code in the getCustomMenuContent() function in CustomAdminMenuManager.php
<?php
// Filter allowed items.
if (isset($buildArray['#items']) && is_array($buildArray['#items'])) {
$this->customAdminMenuMenuItemDisplayManager->filterItems($buildArray['#items']);
// Add toolbar-icon class.
$this->initClasses($buildArray['#items']);
}
?>