| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function __construct( |
||
| 13 | EventStoreInterface $eventStore, |
||
| 14 | EventBusInterface $eventBus, |
||
| 15 | array $eventStreamDecorators = array() |
||
| 16 | ) { |
||
| 17 | parent::__construct( |
||
| 18 | $eventStore, |
||
| 19 | $eventBus, |
||
| 20 | MediaObject::class, |
||
| 21 | new PublicConstructorAggregateFactory(), |
||
| 22 | $eventStreamDecorators |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |