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 — dev-extbase-fluid (#737)
by Alexander
02:59
created
Classes/Domain/Repository/DocumentRepository.php 1 patch
Braces   +18 added lines, -9 removed lines patch added patch discarded remove patch
@@ -31,7 +31,8 @@  discard block
 block discarded – undo
31 31
         return $query->execute();
32 32
     }
33 33
 
34
-    public function oaiDocumentByTstmp($pid) {
34
+    public function oaiDocumentByTstmp($pid)
35
+    {
35 36
         $query = $this->createQuery();
36 37
 
37 38
         $query->matching($query->equals('pid', $pid));
@@ -59,7 +60,8 @@  discard block
 block discarded – undo
59 60
         return $query->execute();
60 61
     }
61 62
 
62
-    public function getDocumentsFromDocumentset($documentSet, $pages) {
63
+    public function getDocumentsFromDocumentset($documentSet, $pages)
64
+    {
63 65
         $query = $this->createQuery();
64 66
 
65 67
         $query->matching($query->equals('pid', $pages));
@@ -68,7 +70,8 @@  discard block
 block discarded – undo
68 70
         return $query->execute();
69 71
     }
70 72
 
71
-    public function getDocumentsForFeeds($settings, $collectionUid) {
73
+    public function getDocumentsForFeeds($settings, $collectionUid)
74
+    {
72 75
         $additionalWhere = '';
73 76
         // Check for pre-selected collections.
74 77
         if (!empty($collectionUid)) {
@@ -120,7 +123,8 @@  discard block
 block discarded – undo
120 123
 
121 124
     }
122 125
 
123
-    public function getStatisticsForCollection($settings) {
126
+    public function getStatisticsForCollection($settings)
127
+    {
124 128
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
125 129
             ->getQueryBuilderForTable('tx_dlf_documents');
126 130
 
@@ -163,7 +167,8 @@  discard block
 block discarded – undo
163 167
         return ['titles' => $countTitles, 'volumes' => $countVolumes];
164 168
     }
165 169
 
166
-    public function getStatisticsForSelectedCollection($settings) {
170
+    public function getStatisticsForSelectedCollection($settings)
171
+    {
167 172
         // Include only selected collections.
168 173
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
169 174
             ->getQueryBuilderForTable('tx_dlf_documents');
@@ -253,7 +258,8 @@  discard block
 block discarded – undo
253 258
         return ['titles' => $countTitles, 'volumes' => $countVolumes];
254 259
     }
255 260
 
256
-    public function getTableOfContentsFromDb($uid, $pid, $settings) {
261
+    public function getTableOfContentsFromDb($uid, $pid, $settings)
262
+    {
257 263
         // Build table of contents from database.
258 264
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
259 265
             ->getQueryBuilderForTable('tx_dlf_documents');
@@ -293,7 +299,8 @@  discard block
 block discarded – undo
293 299
         return $result;
294 300
     }
295 301
 
296
-    public function getOaiRecord($settings) {
302
+    public function getOaiRecord($settings)
303
+    {
297 304
         $where = '';
298 305
         if (!$settings['show_userdefined']) {
299 306
             $where .= 'AND tx_dlf_collections.fe_cruser_id=0 ';
@@ -330,7 +337,8 @@  discard block
 block discarded – undo
330 337
         return $resArray;
331 338
     }
332 339
 
333
-    public function getOaiMetadataFormats($pid, $id) {
340
+    public function getOaiMetadataFormats($pid, $id)
341
+    {
334 342
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
335 343
             ->getQueryBuilderForTable('tx_dlf_documents');
336 344
 
@@ -351,7 +359,8 @@  discard block
 block discarded – undo
351 359
         return $resArray;
352 360
     }
353 361
 
354
-    public function getOaiDocumentList($settings, $documentsToProcess) {
362
+    public function getOaiDocumentList($settings, $documentsToProcess)
363
+    {
355 364
         $connection = GeneralUtility::makeInstance(ConnectionPool::class)
356 365
             ->getConnectionForTable('tx_dlf_documents');
357 366
 
Please login to merge, or discard this patch.
Classes/Domain/Repository/LibraryRepository.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,8 @@
 block discarded – undo
15 15
 class LibraryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
16 16
 {
17 17
 
18
-    public function getLibraryByUidAndPid($uid, $pid) {
18
+    public function getLibraryByUidAndPid($uid, $pid)
19
+    {
19 20
         // Get repository name and administrative contact.
20 21
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
21 22
             ->getQueryBuilderForTable('tx_dlf_libraries');
Please login to merge, or discard this patch.
Classes/Domain/Repository/MetadataRepository.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,8 @@  discard block
 block discarded – undo
18 18
 
19 19
 class MetadataRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
20 20
 {
21
-    public function getMetadataForListview($pages) {
21
+    public function getMetadataForListview($pages)
22
+    {
22 23
         $query = $this->createQuery();
23 24
 
24 25
         $query->matching($query->logicalOr(
@@ -34,7 +35,8 @@  discard block
 block discarded – undo
34 35
         return $query->execute();
35 36
     }
36 37
 
37
-    public function getMetadata($pages, $sysLangUid) {
38
+    public function getMetadata($pages, $sysLangUid)
39
+    {
38 40
         $query = $this->createQuery();
39 41
 
40 42
         $query->matching($query->logicalAnd(
Please login to merge, or discard this patch.
Classes/Domain/Repository/TokenRepository.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@  discard block
 block discarded – undo
14 14
 
15 15
 class TokenRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
16 16
 {
17
-    public function deleteExpiredTokens($execTime, $expired) {
17
+    public function deleteExpiredTokens($execTime, $expired)
18
+    {
18 19
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tx_dlf_tokens');
19 20
 
20 21
         $result = $queryBuilder
@@ -29,7 +30,8 @@  discard block
 block discarded – undo
29 30
         return $result;
30 31
     }
31 32
 
32
-    public function getResumptionToken($token) {
33
+    public function getResumptionToken($token)
34
+    {
33 35
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
34 36
             ->getQueryBuilderForTable('tx_dlf_tokens');
35 37
 
@@ -49,7 +51,8 @@  discard block
 block discarded – undo
49 51
         return $result;
50 52
     }
51 53
 
52
-    public function generateResumptionToken($token, $documentListSet) {
54
+    public function generateResumptionToken($token, $documentListSet)
55
+    {
53 56
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tx_dlf_tokens');
54 57
         $affectedRows = $queryBuilder
55 58
             ->insert('tx_dlf_tokens')
Please login to merge, or discard this patch.
Classes/Domain/Repository/CollectionRepository.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,7 +40,8 @@  discard block
 block discarded – undo
40 40
 
41 41
     }
42 42
 
43
-    public function getCollections($settings, $uid, $sysLangUid) {
43
+    public function getCollections($settings, $uid, $sysLangUid)
44
+    {
44 45
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
45 46
             ->getQueryBuilderForTable('tx_dlf_collections');
46 47
 
@@ -103,7 +104,8 @@  discard block
 block discarded – undo
103 104
         return ['result' => $result, 'count' => $count];
104 105
     }
105 106
 
106
-    public function getSingleCollection($settings, $id, $sysLangUid) {
107
+    public function getSingleCollection($settings, $id, $sysLangUid)
108
+    {
107 109
         $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
108 110
         $queryBuilder = $connectionPool->getQueryBuilderForTable('tx_dlf_collections');
109 111
 
@@ -148,7 +150,8 @@  discard block
 block discarded – undo
148 150
         return $collection;
149 151
     }
150 152
 
151
-    public function getCollectionForMetadata($pages) {
153
+    public function getCollectionForMetadata($pages)
154
+    {
152 155
         // Get list of collections to show.
153 156
         $query = $this->createQuery();
154 157
 
@@ -157,7 +160,8 @@  discard block
 block discarded – undo
157 160
         return $query->execute();
158 161
     }
159 162
 
160
-    public function getFacetCollections($facetCollections) {
163
+    public function getFacetCollections($facetCollections)
164
+    {
161 165
         $query = $this->createQuery();
162 166
 
163 167
         $query->matching($query->in('uid', GeneralUtility::intExplode(',', $facetCollections)));
@@ -165,7 +169,8 @@  discard block
 block discarded – undo
165 169
         return $query->execute();
166 170
     }
167 171
 
168
-    public function getOai1($settings) {
172
+    public function getOai1($settings)
173
+    {
169 174
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
170 175
             ->getQueryBuilderForTable('tx_dlf_collections');
171 176
 
@@ -195,7 +200,8 @@  discard block
 block discarded – undo
195 200
         return $allResults;
196 201
     }
197 202
 
198
-    public function getIndexNameForSolr($settings, $set) {
203
+    public function getIndexNameForSolr($settings, $set)
204
+    {
199 205
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
200 206
             ->getQueryBuilderForTable('tx_dlf_collections');
201 207
 
Please login to merge, or discard this patch.