You are here

WritableDestinationInterface.php in Backup and Migrate 5.0.x

File

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

Namesort descending Description
WritableDestinationInterface Interface WritableDestinationInterface.