Code Duplication    Length = 7-7 lines in 2 locations

src/eXpansion/Bundle/LocalRecords/Plugins/ChatNotification.php 2 locations

@@ 148-154 (lines=7) @@
145
        }
146
147
        // Check for top status
148
        if ($position == 1) {
149
            $msg .= '.top1';
150
        } else {
151
            if ($position <= 5) {
152
                $msg .= '.top5';
153
            } else {
154
                $msg .= '.any';
155
            }
156
        }
157
@@ 192-198 (lines=7) @@
189
190
        // Check which message to send.
191
        $msg = 'secures';
192
        if ($position == 1) {
193
            $msg .= '.top1';
194
        } else {
195
            if ($position <= 5) {
196
                $msg .= '.top5';
197
            } else {
198
                $msg .= '.any';
199
            }
200
        }
201