WritableDestinationInterface.php in Backup and Migrate 5.0.x
Namespace
Drupal\backup_migrate\Core\DestinationFile
src/Core/Destination/WritableDestinationInterface.phpView source
<?php
namespace Drupal\backup_migrate\Core\Destination;
use Drupal\backup_migrate\Core\File\BackupFileReadableInterface;
/**
* Interface WritableDestinationInterface.
*
* @package Drupal\backup_migrate\Core\Destination
*/
interface WritableDestinationInterface extends DestinationInterface {
/**
* Save a file to the destination.
*
* @param \Drupal\backup_migrate\Core\File\BackupFileReadableInterface $file
* The file to save.
*/
public function saveFile(BackupFileReadableInterface $file);
}
Interfaces
Name | Description |
---|---|
WritableDestinationInterface | Interface WritableDestinationInterface. |