Files
branddefense.pl/wp-content/plugins/brizy/admin/cloud/bridge-interface.php
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

26 lines
352 B
PHP

<?php
/**
* Interface Brizy_Admin_Cloud_UploaderInterface
*/
interface Brizy_Admin_Cloud_BridgeInterface {
/**
* @return mixed
*/
public function export( $entity );
/**
* @param $entity
*
* @return mixed
*/
public function import( $entity );
/**
* @param $entity
*
* @return mixed
*/
public function delete( $entity );
}