Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct() |
||
18 | { |
||
19 | $this->eventStoreTableName = Config::get('broadway.event-store-table', 'event_store'); |
||
20 | $this->eventStoreConnection = Config::get('broadway.event-store.connection', 'default'); |
||
21 | |||
22 | if ($this->eventStoreConnection === 'default') { |
||
23 | $this->eventStoreConnection = null; |
||
24 | } |
||
25 | } |
||
26 | |||
48 |