You are here

function file_test_file_predelete in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/file/tests/file_test/file_test.module \file_test_file_predelete()

Implements hook_ENTITY_TYPE_predelete() for file entities.

File

core/modules/file/tests/file_test/file_test.module, line 193
Helper module for the file tests.

Code

function file_test_file_predelete(File $file) {
  _file_test_log_call('delete', [
    $file
      ->id(),
  ]);
}