You've already forked symfony-storage
version 1.0
This commit is contained in:
13
StorageBundle/Adaptors/StorageAdaptor.php
Normal file
13
StorageBundle/Adaptors/StorageAdaptor.php
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user