Code Duplication    Length = 3-3 lines in 2 locations

src/RealTimeClient.php 2 locations

@@ 436-438 (lines=3) @@
433
                        = $payload['channel']['name'];
434
                    break;
435
436
                case 'group_archive':
437
                    $this->groups[$payload['group']['id']]->data['is_archived'] = true;
438
                    break;
439
440
                case 'group_unarchive':
441
                    $this->groups[$payload['group']['id']]->data['is_archived'] = false;
@@ 440-442 (lines=3) @@
437
                    $this->groups[$payload['group']['id']]->data['is_archived'] = true;
438
                    break;
439
440
                case 'group_unarchive':
441
                    $this->groups[$payload['group']['id']]->data['is_archived'] = false;
442
                    break;
443
444
                case 'im_created':
445
                    $dm = new DirectMessageChannel($this, $payload['channel']);