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 (#705)
by Alexander
02:44
created
Classes/Plugin/Metadata.php 1 patch
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -276,7 +276,8 @@  discard block
 block discarded – undo
276 276
      *
277 277
      * @return array list of collections
278 278
      */
279
-    private function getCollections() {
279
+    private function getCollections()
280
+    {
280 281
         $collections = [];
281 282
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
282 283
                 ->getQueryBuilderForTable('tx_dlf_collections');
@@ -300,7 +301,8 @@  discard block
 block discarded – undo
300 301
      *
301 302
      * @return array list of metadata
302 303
      */
303
-    private function getMetadataFromDatabase($metadata) {
304
+    private function getMetadataFromDatabase($metadata)
305
+    {
304 306
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
305 307
             ->getQueryBuilderForTable('tx_dlf_metadata');
306 308
         $result = $queryBuilder
@@ -346,7 +348,8 @@  discard block
 block discarded – undo
346 348
      *
347 349
      * @return array metadata
348 350
      */
349
-    private function getMetadata() {
351
+    private function getMetadata()
352
+    {
350 353
         $metadata = [];
351 354
         if ($this->conf['rootline'] < 2) {
352 355
             // Get current structure's @ID.
@@ -385,7 +388,8 @@  discard block
 block discarded – undo
385 388
      *
386 389
      * @return array metadata
387 390
      */
388
-    private function getMetadataForIds($id, $metadata) {
391
+    private function getMetadataForIds($id, $metadata)
392
+    {
389 393
         $useOriginalIiifManifestMetadata = $this->conf['originalIiifMetadata'] == 1 && $this->doc instanceof IiifManifest;
390 394
         foreach ($id as $sid) {
391 395
             if ($useOriginalIiifManifestMetadata) {
Please login to merge, or discard this patch.