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 ( e63c28...e9dabe )
by Thorsten
11s
created
phpmyfaq/setup/index.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
 define('COPYRIGHT', '&copy; 2001-2014 <a href="http://www.phpmyfaq.de/">phpMyFAQ Team</a> | Follow us on <a href="http://twitter.com/phpMyFAQ">Twitter</a> | All rights reserved.');
29 29
 define('PMF_ROOT_DIR', dirname(dirname(__FILE__)));
30
-define('PMF_INCLUDE_DIR', PMF_ROOT_DIR . '/inc');
30
+define('PMF_INCLUDE_DIR', PMF_ROOT_DIR.'/inc');
31 31
 define('IS_VALID_PHPMYFAQ', null);
32 32
 
33 33
 if (version_compare(PHP_VERSION, '5.4.4') < 0) {
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
 use Symfony\Component\ClassLoader\UniversalClassLoader;
38 38
 
39
-if (! defined('DEBUG')) {
39
+if (!defined('DEBUG')) {
40 40
     define('DEBUG', true);
41 41
 }
42 42
 
@@ -47,17 +47,17 @@  discard block
 block discarded – undo
47 47
 session_name('phpmyfaq-setup');
48 48
 session_start();
49 49
 
50
-require PMF_ROOT_DIR . '/config/constants.php';
50
+require PMF_ROOT_DIR.'/config/constants.php';
51 51
 
52 52
 //
53 53
 // Setting up PSR-0 autoloader for Symfony Components
54 54
 //
55
-require PMF_INCLUDE_DIR . '/libs/Symfony/Component/ClassLoader/UniversalClassLoader.php';
55
+require PMF_INCLUDE_DIR.'/libs/Symfony/Component/ClassLoader/UniversalClassLoader.php';
56 56
 
57 57
 $loader = new UniversalClassLoader();
58
-$loader->registerNamespace('Symfony', PMF_INCLUDE_DIR . '/libs');
58
+$loader->registerNamespace('Symfony', PMF_INCLUDE_DIR.'/libs');
59 59
 $loader->registerPrefix('PMF_', PMF_INCLUDE_DIR);
60
-$loader->registerPrefix('Twig_', PMF_INCLUDE_DIR . '/libs');
60
+$loader->registerPrefix('Twig_', PMF_INCLUDE_DIR.'/libs');
61 61
 $loader->register();
62 62
 
63 63
 //
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 // Initializing Twig
73 73
 //
74 74
 $twig = new Twig_Environment(
75
-    new Twig_Loader_Filesystem(PMF_ROOT_DIR . '/setup/assets/twig')
75
+    new Twig_Loader_Filesystem(PMF_ROOT_DIR.'/setup/assets/twig')
76 76
 );
77 77
 
78 78
 $tplLayoutVars = array(
@@ -88,10 +88,10 @@  discard block
 block discarded – undo
88 88
 // not yet POSTed
89 89
 if (!isset($_POST['sql_server']) && !isset($_POST['sql_user']) && !isset($_POST['sql_db'])) {
90 90
 
91
-    $databases= $system->getSupportedSafeDatabases(true);
91
+    $databases = $system->getSupportedSafeDatabases(true);
92 92
     // Whether the only supported RDBMS is sqlite and/or sqlite3 (in any order):
93
-    $onlySqlite= count($databases)<=2 && strpos(strtolower($databases[0]), 'sqlite')!==FALSE
94
-            && ( count($databases)===1 || strpos(strtolower($databases[1]), 'sqlite')!==FALSE );
93
+    $onlySqlite = count($databases) <= 2 && strpos(strtolower($databases[0]), 'sqlite') !== FALSE
94
+            && (count($databases) === 1 || strpos(strtolower($databases[1]), 'sqlite') !== FALSE);
95 95
     $tplDatabaseVars = array(
96 96
         'databases' => $databases,
97 97
         'dirname'   => dirname(__DIR__),
Please login to merge, or discard this patch.