Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

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.
Passed
Pull Request — 2.x (#526)
by Sebastian
05:03
created
plugins/pageview/class.tx_dlf_pageview.php 1 patch
Braces   +14 added lines, -7 removed lines patch added patch discarded remove patch
@@ -17,7 +17,8 @@  discard block
 block discarded – undo
17 17
  * @subpackage	tx_dlf
18 18
  * @access	public
19 19
  */
20
-class tx_dlf_pageview extends tx_dlf_plugin {
20
+class tx_dlf_pageview extends tx_dlf_plugin
21
+{
21 22
 
22 23
     public $scriptRelPath = 'plugins/pageview/class.tx_dlf_pageview.php';
23 24
 
@@ -52,7 +53,8 @@  discard block
 block discarded – undo
52 53
      *
53 54
      * @return	string		Viewer script tags ready for output
54 55
      */
55
-    protected function addViewerJS() {
56
+    protected function addViewerJS()
57
+    {
56 58
 
57 59
         $output = array ();
58 60
         $tmp = $this->getFulltext($this->piVars['page']);
@@ -121,7 +123,8 @@  discard block
 block discarded – undo
121 123
      *
122 124
      * @return	array		Marker array
123 125
      */
124
-    protected function addInteraction() {
126
+    protected function addInteraction()
127
+    {
125 128
 
126 129
         $markerArray = array ();
127 130
 
@@ -169,7 +172,8 @@  discard block
 block discarded – undo
169 172
      *
170 173
      * @return	array		Marker array
171 174
      */
172
-    protected function addBasketForm() {
175
+    protected function addBasketForm()
176
+    {
173 177
 
174 178
         $markerArray = array ();
175 179
 
@@ -246,7 +250,8 @@  discard block
 block discarded – undo
246 250
      *
247 251
      * @return	array		URL and MIME type of image file
248 252
      */
249
-    protected function getImage($page) {
253
+    protected function getImage($page)
254
+    {
250 255
 
251 256
         $image = array ();
252 257
 
@@ -299,7 +304,8 @@  discard block
 block discarded – undo
299 304
      *
300 305
      * @return	array		URL and MIME type of fulltext file
301 306
      */
302
-    protected function getFulltext($page) {
307
+    protected function getFulltext($page)
308
+    {
303 309
 
304 310
         $fulltext = array ();
305 311
 
@@ -342,7 +348,8 @@  discard block
 block discarded – undo
342 348
      *
343 349
      * @return	string		The content that is displayed on the website
344 350
      */
345
-    public function main($content, $conf) {
351
+    public function main($content, $conf)
352
+    {
346 353
 
347 354
         $this->init($conf);
348 355
 
Please login to merge, or discard this patch.