Problem/Motivation

Deprecated: Drupal\views_bulk_operations\Plugin\views\field\ViewsBulkOperationsBulkForm::updateTempstoreData(): Implicitly marking parameter $view_entity_data as nullable is deprecated, the explicit nullable type must be used instead in /var/www/html/web/modules/contrib/views_bulk_operations/src/Plugin/views/field/ViewsBulkOperationsBulkForm.php on line 160

Steps to reproduce

Clear the cache while on PHP 8.4

   * @param array $view_entity_data
   *   See ViewsBulkOperationsViewDataInterface::getViewEntityData().
   */
  protected function updateTempstoreData(array $view_entity_data = NULL): void {

Proposed resolution

   * @param array|null $view_entity_data
   *   See ViewsBulkOperationsViewDataInterface::getViewEntityData().
   */
  protected function updateTempstoreData(?array $view_entity_data = NULL): void {

Remaining tasks

User interface changes

API changes

Data model changes

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

solideogloria created an issue. See original summary.

deepali sardana’s picture

Assigned: Unassigned »

deepali sardana’s picture

Assigned: » Unassigned
deepali sardana’s picture

Status: Active » Needs review
solideogloria’s picture

Status: Needs review » Reviewed & tested by the community

Looks good to me.

graber made their first commit to this issue’s fork.

graber’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.