protected function Local::removeFileJailed

Implements Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().

Overrides FileTransfer::removeFileJailed

File

drupal/core/lib/Drupal/Core/FileTransfer/Local.php, line 78
Definition of Drupal\Core\FileTransfer\Local.

Class

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

Namespace

Drupal\Core\FileTransfer

Code

protected function removeFileJailed($file) {
  if (@(!drupal_unlink($file))) {
    throw new FileTransferException('Cannot remove file %file.', NULL, array(
      '%file' => $file,
    ));
  }
}