Code Duplication    Length = 14-14 lines in 2 locations

src/component/Html/Navigation.php 2 locations

@@ 410-423 (lines=14) @@
407
    /**
408
     * @return array
409
     */
410
    public function getBefore()
411
    {
412
        return array_merge(
413
            [
414
                'root_ul'           => '',
415
                'first_root_li'     => '',
416
                'li_a'              => '',
417
                'li_a_text'         => '',
418
                'li_with_ul_a'      => '',
419
                'li_with_ul_a_text' => '',
420
            ],
421
            $this->before
422
        );
423
    }
424
425
    /**
426
     * Put string before elements.
@@ 444-457 (lines=14) @@
441
    /**
442
     * @return array
443
     */
444
    public function getAfter()
445
    {
446
        return array_merge(
447
            [
448
                'root_ul'           => '',
449
                'last_root_li'      => '',
450
                'li_a'              => '',
451
                'li_a_text'         => '',
452
                'li_with_ul_a'      => '',
453
                'li_with_ul_a_text' => '',
454
            ],
455
            $this->after
456
        );
457
    }
458
459
    /**
460
     * Put string after elements.