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 — master (#439)
by Sebastian
05:46
created
Classes/Common/Document.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1710,7 +1710,8 @@
 block discarded – undo
1710 1710
      *
1711 1711
      * @return bool true if variable is set and not empty, false otherwise
1712 1712
      */
1713
-    public function __isset($var) {
1713
+    public function __isset($var)
1714
+    {
1714 1715
         return !empty($this->__get($var));
1715 1716
     }
1716 1717
 
Please login to merge, or discard this patch.
Classes/Common/Solr.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1710,7 +1710,8 @@
 block discarded – undo
1710 1710
      *
1711 1711
      * @return bool true if variable is set and not empty, false otherwise
1712 1712
      */
1713
-    public function __isset($var) {
1713
+    public function __isset($var)
1714
+    {
1714 1715
         return !empty($this->__get($var));
1715 1716
     }
1716 1717
 
Please login to merge, or discard this patch.
Classes/Common/DocumentList.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1710,7 +1710,8 @@
 block discarded – undo
1710 1710
      *
1711 1711
      * @return bool true if variable is set and not empty, false otherwise
1712 1712
      */
1713
-    public function __isset($var) {
1713
+    public function __isset($var)
1714
+    {
1714 1715
         return !empty($this->__get($var));
1715 1716
     }
1716 1717
 
Please login to merge, or discard this patch.
Configuration/Commands.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
  * LICENSE.txt file that was distributed with this source code.
11 11
  */
12 12
 
13
- /**
14
- * Commands to be executed by TYPO3, where the key of the array
15
- * is the name of the command (to be called as the first argument after "typo3").
16
- * Required parameter is the "class" of the command which needs to be a subclass
17
- * of \Symfony\Component\Console\Command\Command.
18
- */
13
+    /**
14
+     * Commands to be executed by TYPO3, where the key of the array
15
+     * is the name of the command (to be called as the first argument after "typo3").
16
+     * Required parameter is the "class" of the command which needs to be a subclass
17
+     * of \Symfony\Component\Console\Command\Command.
18
+     */
19 19
 return [
20 20
     'kitodo:index' => [
21 21
         'class' => Kitodo\Dlf\Command\IndexCommand::class
Please login to merge, or discard this patch.