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