GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 5-5 lines in 4 locations

application/helpers/markdown_helper.php 4 locations

@@ 827-831 (lines=5) @@
824
            $url = $this->encodeAttribute($url);
825
826
            $result = "<a href=\"$url\"";
827
            if (isset($this->titles[$link_id])) {
828
                $title = $this->titles[$link_id];
829
                $title = $this->encodeAttribute($title);
830
                $result .= " title=\"$title\"";
831
            }
832
833
            $link_text = $this->runSpanGamut($link_text);
834
            $result .= ">$link_text</a>";
@@ 940-944 (lines=5) @@
937
        if (isset($this->urls[$link_id])) {
938
            $url    = $this->encodeAttribute($this->urls[$link_id]);
939
            $result = "<img src=\"$url\" alt=\"$alt_text\"";
940
            if (isset($this->titles[$link_id])) {
941
                $title = $this->titles[$link_id];
942
                $title = $this->encodeAttribute($title);
943
                $result .= " title=\"$title\"";
944
            }
945
            $result .= $this->empty_element_suffix;
946
            $result = $this->hashPart($result);
947
        } else {
@@ 2650-2654 (lines=5) @@
2647
            $url = $this->encodeAttribute($url);
2648
2649
            $result = "<a href=\"$url\"";
2650
            if (isset($this->titles[$link_id])) {
2651
                $title = $this->titles[$link_id];
2652
                $title = $this->encodeAttribute($title);
2653
                $result .= " title=\"$title\"";
2654
            }
2655
            if (isset($this->ref_attr[$link_id])) {
2656
                $result .= $this->ref_attr[$link_id];
2657
            }
@@ 2769-2773 (lines=5) @@
2766
        if (isset($this->urls[$link_id])) {
2767
            $url    = $this->encodeAttribute($this->urls[$link_id]);
2768
            $result = "<img src=\"$url\" alt=\"$alt_text\"";
2769
            if (isset($this->titles[$link_id])) {
2770
                $title = $this->titles[$link_id];
2771
                $title = $this->encodeAttribute($title);
2772
                $result .= " title=\"$title\"";
2773
            }
2774
            if (isset($this->ref_attr[$link_id])) {
2775
                $result .= $this->ref_attr[$link_id];
2776
            }