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.
Completed
Push — master ( a39841...23e3c6 )
by
unknown
02:58
created
presets/typo3/clear-cache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
  * @link     http://www.netresearch.de
13 13
  */
14 14
 
15
-require __DIR__ . '/bootstrap.php';
15
+require __DIR__.'/bootstrap.php';
16 16
 
17 17
 $dataHandler = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\CMS\Core\DataHandling\DataHandler');
18 18
 $dataHandler->stripslashes_values = 0;
Please login to merge, or discard this patch.
presets/typo3/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     die('Access denied');
22 22
 }
23 23
 
24
-define('PATH_site', getcwd() . DIRECTORY_SEPARATOR);
24
+define('PATH_site', getcwd().DIRECTORY_SEPARATOR);
25 25
 
26 26
 $typo3VersionIsMinimum7 = true;
27 27
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 }
34 34
 
35 35
 if ($typo3VersionIsMinimum7) {
36
-    $classLoader = include getcwd() . '/typo3_src/vendor/autoload.php';
36
+    $classLoader = include getcwd().'/typo3_src/vendor/autoload.php';
37 37
     \TYPO3\CMS\Core\Core\Bootstrap::getInstance()
38 38
         ->initializeClassLoader($classLoader)
39 39
         ->baseSetup(PATH_site)
Please login to merge, or discard this patch.