You are here

function file_test_validator in Zircon Profile 8

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

Helper validator that returns the $errors parameter.

File

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

Code

function file_test_validator(File $file, $errors) {
  return $errors;
}