| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Anomaly\Streams\Platform\Stream\Command; |
||
| 50 | public function handle(Container $container) |
||
| 51 | { |
||
| 52 | /* @var EntryInterface $model */ |
||
| 53 | $model = $container->make( |
||
| 54 | "Anomaly\\Streams\\Platform\\Model\\{$this->namespace}\\{$this->namespace}{$this->slug}EntryModel" |
||
| 55 | ); |
||
| 56 | |||
| 57 | return $model->getStream(); |
||
| 58 | } |
||
| 59 | } |
||
| 60 |