Awesome features (you'll see)

This commit is contained in:
Maxime Renou
2019-02-21 12:28:32 +01:00
parent 62f60374ea
commit dc81eea51d
10 changed files with 164 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
<?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);
}