| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | 2 | protected static function connections() { |
|
| 58 | $connections = array( |
||
| 59 | 2 | 'database' => new DatabaseConnection( $GLOBALS['wpdb'] ), |
|
| 60 | 2 | 'redis' => new RedisConnection(), |
|
| 61 | 2 | 'sync' => new SyncConnection(), |
|
| 62 | ); |
||
| 63 | |||
| 64 | 2 | return apply_filters( 'wp_queue_connections', $connections ); |
|
| 65 | } |
||
| 66 | } |