symfony-storage/StorageBundle/Adaptors/StorageAdaptor.php

13 lines
358 B
PHP
Raw Permalink Normal View History

2019-02-21 12:28:32 +01:00
<?php
namespace Bluesquare\StorageBundle\Adaptors;
interface StorageAdaptor
{
public function index();
public function mode($name);
public function store($source_path, $target_path);
public function retrieve($distant_path, $local_path);
public function stream($distant_path, $target_stream);
public function delete($distant_path);
}