| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function start(): bool |
||
| 42 | { |
||
| 43 | $this->db->selectCollection('subscription')->createIndex(['node' => 1]); |
||
| 44 | $this->db->selectCollection('subscription')->createIndex(['user' => 1]); |
||
| 45 | $this->db->selectCollection('notification')->createIndex(['receiver' => 1]); |
||
| 46 | $this->db->selectCollection('notification')->createIndex(['sender' => 1]); |
||
| 47 | |||
| 48 | return true; |
||
| 49 | } |
||
| 50 | } |
||
| 51 |