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
Branch master (b8299b)
by Haven
03:04
created
bootstrap/app.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -7,9 +7,9 @@
 block discarded – undo
7 7
 require __DIR__ . '/../vendor/autoload.php';
8 8
 
9 9
 try {
10
-    $dotenv = (new \Dotenv\Dotenv(__DIR__ . '/../'))->load();
10
+	$dotenv = (new \Dotenv\Dotenv(__DIR__ . '/../'))->load();
11 11
 } catch (\Dotenv\Exception\InvalidPathException $e) {
12
-    //
12
+	//
13 13
 }
14 14
 
15 15
 require_once __DIR__ . '/database.php';
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
 $container = $app->getContainer();
25 25
 
26
-$container['db'] = function ($container) use ($capsule) {
26
+$container['db'] = function($container) use ($capsule) {
27 27
 	return $capsule;
28 28
 };
29 29
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	return new \Slim\Flash\Messages;
36 36
 };
37 37
 
38
-$container['view'] = function ($container) {
38
+$container['view'] = function($container) {
39 39
 	$view = new \Slim\Views\Twig(__DIR__ . '/../resources/views/', [
40 40
 		'cache' => false,
41 41
 	]);
@@ -45,17 +45,17 @@  discard block
 block discarded – undo
45 45
 		$container->request->getUri()
46 46
 	));
47 47
 
48
-	$view->getEnvironment()->addGlobal('auth',[
48
+	$view->getEnvironment()->addGlobal('auth', [
49 49
 		'check' => $container->auth->check(),
50 50
 		'user' => $container->auth->user()
51 51
 	]);
52 52
 
53
-	$view->getEnvironment()->addGlobal('flash',$container->flash);
53
+	$view->getEnvironment()->addGlobal('flash', $container->flash);
54 54
 
55 55
 	return $view;
56 56
 };
57 57
 
58
-$container['validator'] = function ($container) {
58
+$container['validator'] = function($container) {
59 59
 	return new App\Validation\Validator;
60 60
 };
61 61
 
Please login to merge, or discard this patch.
bootstrap/database.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -3,15 +3,15 @@
 block discarded – undo
3 3
 $capsule = new \Illuminate\Database\Capsule\Manager;
4 4
 
5 5
 $capsule->addConnection([
6
-    'driver' => getenv('DB_DRIVER'),
7
-    'host' => getenv('DB_HOST'),
8
-    'database' => getenv('DB_DATABASE'),
9
-    'username' => getenv('DB_USERNAME'),
10
-    'password' => getenv('DB_PASSWORD'),
11
-    'charset' => 'utf8',
12
-    'port' => getenv('DB_PORT'),
13
-    'collation' => 'utf8_unicode_ci',
14
-    'prefix' => ''
6
+	'driver' => getenv('DB_DRIVER'),
7
+	'host' => getenv('DB_HOST'),
8
+	'database' => getenv('DB_DATABASE'),
9
+	'username' => getenv('DB_USERNAME'),
10
+	'password' => getenv('DB_PASSWORD'),
11
+	'charset' => 'utf8',
12
+	'port' => getenv('DB_PORT'),
13
+	'collation' => 'utf8_unicode_ci',
14
+	'prefix' => ''
15 15
 ]);
16 16
 
17 17
 $capsule->setAsGlobal();
Please login to merge, or discard this patch.