forked from LiveCarta/yii2-aws-s3
36 lines
755 B
PHP
36 lines
755 B
PHP
<?php
|
|
|
|
namespace frostealth\yii2\aws\s3\base\commands;
|
|
|
|
use frostealth\yii2\aws\s3\interfaces\Bus;
|
|
use frostealth\yii2\aws\s3\interfaces\commands\ExecutableCommand as ExecutableCommandInterface;
|
|
|
|
/**
|
|
* Class ExecutableCommand
|
|
*
|
|
* @package frostealth\yii2\aws\s3\base\commands
|
|
*/
|
|
abstract class ExecutableCommand implements ExecutableCommandInterface
|
|
{
|
|
/** @var \frostealth\yii2\aws\s3\interfaces\Bus */
|
|
private $bus;
|
|
|
|
/**
|
|
* ExecutableCommand constructor.
|
|
*
|
|
* @param \frostealth\yii2\aws\s3\interfaces\Bus $bus
|
|
*/
|
|
public function __construct(Bus $bus)
|
|
{
|
|
$this->bus = $bus;
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function execute()
|
|
{
|
|
return $this->bus->execute($this);
|
|
}
|
|
}
|