wordpress/php-fpm/wordpress_files/plugins/backwpup/inc/class-download-file-interface.php

37 lines
568 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php
/**
* Class BackWPup_Download_File_Interface
*/
interface BackWPup_Download_File_Interface {
/**
* Download File
*
* Initialize, clean the output and call the function that will download the file
*
* @return void
*/
public function download();
/**
* Set Headers
*
* @return $this For concatenation
*/
public function headers();
/**
* Clean The output
*
* @return $this For concatenation
*/
public function clean_ob();
/**
* File Path
*
* @return string The file path to download
*/
public function filepath();
}