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 = 10-10 lines in 2 locations

src/Helpers/view/Scripts.php 1 location

@@ 156-165 (lines=10) @@
153
    /**
154
     * @return string
155
     */
156
    public function renderRaw()
157
    {
158
        $return = '';
159
        if (count($this->rawScripts)) {
160
            $return .= '<script type="text/javascript">';
161
            $return .= implode("\r\n", $this->rawScripts);
162
            $return .= '</script>';
163
        }
164
        return $return;
165
    }
166
}
167

src/Helpers/view/Stylesheets.php 1 location

@@ 90-99 (lines=10) @@
87
    /**
88
     * @return string
89
     */
90
    public function renderRaw()
91
    {
92
        $return = '';
93
        if (count($this->rawStyles)) {
94
            $return .= '<style type="text/css" media="screen">';
95
            $return .= implode("\r\n", $this->rawStyles);
96
            $return .= '</style>';
97
        }
98
        return $return;
99
    }
100
101
    /**
102
     * @param $path