Code Duplication    Length = 3-3 lines in 2 locations

src/RealTimeClient.php 2 locations

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