1
0
This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
yii2-aws-s3/src/interfaces/Bus.php
2016-04-08 15:50:37 +06:00

21 lines
368 B
PHP

<?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);
}