1
0

initial commit

This commit is contained in:
frostealth
2016-04-08 15:50:37 +06:00
commit 9cfd06866e
40 changed files with 2312 additions and 0 deletions

20
src/interfaces/Bus.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
namespace frostealth\yii2\aws\s3\interfaces;
use frostealth\yii2\aws\s3\interfaces\commands\Command;
/**
* Interface Bus
*
* @package frostealth\yii2\aws\s3\interfaces
*/
interface Bus
{
/**
* @param \frostealth\yii2\aws\s3\interfaces\commands\Command $command
*
* @return mixed
*/
public function execute(Command $command);
}