Code Duplication    Length = 14-14 lines in 2 locations

src/component/Html/Navigation.php 2 locations

@@ 421-434 (lines=14) @@
418
    /**
419
     * @return array
420
     */
421
    public function getBefore()
422
    {
423
        return array_merge(
424
            [
425
                'root_ul'           => '',
426
                'first_root_li'     => '',
427
                'li_a'              => '',
428
                'li_a_text'         => '',
429
                'li_with_ul_a'      => '',
430
                'li_with_ul_a_text' => '',
431
            ],
432
            $this->before
433
        );
434
    }
435
436
    /**
437
     * Put string before elements.
@@ 455-468 (lines=14) @@
452
    /**
453
     * @return array
454
     */
455
    public function getAfter()
456
    {
457
        return array_merge(
458
            [
459
                'root_ul'           => '',
460
                'last_root_li'      => '',
461
                'li_a'              => '',
462
                'li_a_text'         => '',
463
                'li_with_ul_a'      => '',
464
                'li_with_ul_a_text' => '',
465
            ],
466
            $this->after
467
        );
468
    }
469
470
    /**
471
     * Put string after elements.