Code Duplication    Length = 7-7 lines in 2 locations

src/Presenters/Presenter.php 2 locations

@@ 33-39 (lines=7) @@
30
     *
31
     * @return string
32
     */
33
    public function getOpenTagA($item)
34
    {
35
        if($item->attributes['vue']){
36
            return PHP_EOL . '<router-link to="' . PHP_EOL;
37
        }
38
        return PHP_EOL . '<a href=">' . PHP_EOL;
39
    }
40
41
    /**
42
     * Get close tag A.
@@ 46-52 (lines=7) @@
43
     *
44
     * @return string
45
     */
46
    public function getCloseTagA($item)
47
    {
48
        if($item->attributes['vue']){
49
            return PHP_EOL . '</router-link>' . PHP_EOL;
50
        }
51
        return PHP_EOL . '</a>' . PHP_EOL;
52
    }
53
54
55
    /**