function FileFieldTestBase::assertFileIsPermanent

Asserts that a file's status is set to permanent in the database.

File

core/modules/file/src/Tests/FileFieldTestBase.php, line 307

Class

FileFieldTestBase
Provides methods specifically for testing File module's field handling.

Namespace

Drupal\file\Tests

Code

public function assertFileIsPermanent(FileInterface $file, $message = NULL) {
  $message = isset($message) ? $message : new FormattableMarkup('File %file is permanent.', [
    '%file' => $file->getFileUri(),
  ]);
  $this->assertTrue($file->isPermanent(), $message);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.