You are here

function file_test_file_copy in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/file/tests/file_test/file_test.module \file_test_file_copy()
  2. 7 modules/simpletest/tests/file_test.module \file_test_file_copy()
  3. 10 core/modules/file/tests/file_test/file_test.module \file_test_file_copy()

Implements hook_file_copy().

File

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

Code

function file_test_file_copy(File $file, $source) {
  _file_test_log_call('copy', [
    $file
      ->id(),
    $source
      ->id(),
  ]);
}