Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 144-150 (lines=7) @@
141
        }
142
143
        // Check for top status
144
        if ($position == 1) {
145
            $msg .= '.top1';
146
        } else {
147
            if ($position <= 5) {
148
                $msg .= '.top5';
149
            } else {
150
                $msg .= '.any';
151
            }
152
        }
153
@@ 188-194 (lines=7) @@
185
186
        // Check which message to send.
187
        $msg = 'secures';
188
        if ($position == 1) {
189
            $msg .= '.top1';
190
        } else {
191
            if ($position <= 5) {
192
                $msg .= '.top5';
193
            } else {
194
                $msg .= '.any';
195
            }
196
        }
197