| 1 | <?php namespace Anomaly\Streams\Platform\Stream\Command; |
||
| 16 | class MergeStreamConfig implements SelfHandling |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The stream instance. |
||
| 21 | * |
||
| 22 | * @var StreamInterface |
||
| 23 | */ |
||
| 24 | protected $stream; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Create a new MergeStreamConfig instance. |
||
| 28 | * |
||
| 29 | * @param StreamInterface $stream |
||
| 30 | */ |
||
| 31 | public function __construct(StreamInterface $stream) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Handle the command. |
||
| 38 | * |
||
| 39 | * @param AddonCollection $addons |
||
| 40 | * @param Repository $repository |
||
| 41 | */ |
||
| 42 | public function handle(AddonCollection $addons, Repository $repository) |
||
| 53 | } |
||
| 54 |