You are here

protected function Local::removeFileJailed in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/FileTransfer/Local.php \Drupal\Core\FileTransfer\Local::removeFileJailed()
  2. 9 core/lib/Drupal/Core/FileTransfer/Local.php \Drupal\Core\FileTransfer\Local::removeFileJailed()

Removes a file.

Parameters

string $destination: The destination file to be removed.

Overrides FileTransfer::removeFileJailed

File

core/lib/Drupal/Core/FileTransfer/Local.php, line 92

Class

Local
Defines the local connection class for copying files as the httpd user.

Namespace

Drupal\Core\FileTransfer

Code

protected function removeFileJailed($file) {
  if (@(!$this->fileSystem
    ->unlink($file))) {
    throw new FileTransferException('Cannot remove file %file.', 0, [
      '%file' => $file,
    ]);
  }
}