You are here

WritableDestinationInterface.php in Backup and Migrate 8.4

File

lib/backup_migrate_core/src/Destination/WritableDestinationInterface.php
View 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

Namesort descending Description
WritableDestinationInterface Interface WritableDestinationInterface.