Code Duplication    Length = 3-3 lines in 2 locations

src/RealTimeClient.php 2 locations

@@ 397-399 (lines=3) @@
394
                        = $payload['channel']['name'];
395
                    break;
396
397
                case 'group_archive':
398
                    $this->groups[$payload['group']['id']]->data['is_archived'] = true;
399
                    break;
400
401
                case 'group_unarchive':
402
                    $this->groups[$payload['group']['id']]->data['is_archived'] = false;
@@ 401-403 (lines=3) @@
398
                    $this->groups[$payload['group']['id']]->data['is_archived'] = true;
399
                    break;
400
401
                case 'group_unarchive':
402
                    $this->groups[$payload['group']['id']]->data['is_archived'] = false;
403
                    break;
404
405
                case 'im_created':
406
                    $dm = new DirectMessageChannel($this, $payload['channel']);