Code Duplication    Length = 3-3 lines in 2 locations

src/RealTimeClient.php 2 locations

@@ 423-425 (lines=3) @@
420
                        = $payload['channel']['name'];
421
                    break;
422
423
                case 'group_archive':
424
                    $this->groups[$payload['group']['id']]->data['is_archived'] = true;
425
                    break;
426
427
                case 'group_unarchive':
428
                    $this->groups[$payload['group']['id']]->data['is_archived'] = false;
@@ 427-429 (lines=3) @@
424
                    $this->groups[$payload['group']['id']]->data['is_archived'] = true;
425
                    break;
426
427
                case 'group_unarchive':
428
                    $this->groups[$payload['group']['id']]->data['is_archived'] = false;
429
                    break;
430
431
                case 'im_created':
432
                    $dm = new DirectMessageChannel($this, $payload['channel']);