Hello,
I had the same issue.
I solved it with a new declaration of array type, for “$disabled_admin_bar_option_” variable, in “adminimize\inc-setup\admin-bar-items.php”.
Like this:
// Merge multidimensional array in to one, flat.
$disabled_admin_bar_option_ = array(); // new declaration of type
$disabled_admin_bar_option_ = array_reduce( $disabled_admin_bar_option_, ‘array_merge’, array() );
Best Regards