Code Duplication    Length = 5-5 lines in 3 locations

plugin/sepe/ws/Sepe.php 3 locations

@@ 309-313 (lines=5) @@
306
                $morningAccessNumber = null;
307
                $morningTotalDuration = null;
308
309
                if (isset($specialty->USO->HORARIO_MANANA)) {
310
                    $morningParticipansNumber = $specialty->USO->HORARIO_MANANA->NUM_PARTICIPANTES;
311
                    $morningAccessNumber = $specialty->USO->HORARIO_MANANA->NUMERO_ACCESOS;
312
                    $morningTotalDuration = $specialty->USO->HORARIO_MANANA->DURACION_TOTAL;
313
                }
314
315
                $afternoonParticipantNumber = null;
316
                $afternoonAccessNumber = null;
@@ 319-323 (lines=5) @@
316
                $afternoonAccessNumber = null;
317
                $afternoonTotalDuration = null;
318
319
                if (isset($specialty->USO->HORARIO_TARDE)) {
320
                    $afternoonParticipantNumber = $specialty->USO->HORARIO_TARDE->NUM_PARTICIPANTES;
321
                    $afternoonAccessNumber = $specialty->USO->HORARIO_TARDE->NUMERO_ACCESOS;
322
                    $afternoonTotalDuration = $specialty->USO->HORARIO_TARDE->DURACION_TOTAL;
323
                }
324
325
                $nightParticipantsNumber = null;
326
                $nightAccessNumber = null;
@@ 329-333 (lines=5) @@
326
                $nightAccessNumber = null;
327
                $nightTotalDuration = null;
328
329
                if (isset($specialty->USO->HORARIO_NOCHE)) {
330
                    $nightParticipantsNumber = $specialty->USO->HORARIO_NOCHE->NUM_PARTICIPANTES;
331
                    $nightAccessNumber = $specialty->USO->HORARIO_NOCHE->NUMERO_ACCESOS;
332
                    $nightTotalDuration = $specialty->USO->HORARIO_NOCHE->DURACION_TOTAL;
333
                }
334
335
                $attendeesCount = null;
336
                $learningActivityCount = null;