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 ( 55175e...3f4519 )
by Haven
03:20
created
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.
app/Validation/Exceptions/EmailAvailableException.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@
 block discarded – undo
11 11
 {
12 12
 	
13 13
 	public static $defaultTemplates = [
14
-        self::MODE_DEFAULT => [
15
-            self::STANDARD => '{{name}} is already taken',
16
-        ],
17
-        self::MODE_NEGATIVE => [
18
-            self::STANDARD => '{{name}} is not already taken',
19
-        ]
20
-    ];
14
+		self::MODE_DEFAULT => [
15
+			self::STANDARD => '{{name}} is already taken',
16
+		],
17
+		self::MODE_NEGATIVE => [
18
+			self::STANDARD => '{{name}} is not already taken',
19
+		]
20
+	];
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.
app/Validation/Exceptions/MatchesPasswordException.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
13 13
 class MatchesPasswordException extends ValidationException
14 14
 {
15 15
 	public static $defaultTemplates = [
16
-        self::MODE_DEFAULT => [
17
-            self::STANDARD => '{{name}} does not macth',
18
-        ],
19
-        self::MODE_NEGATIVE => [
20
-            self::STANDARD => '{{name}} does not macth negative',
21
-        ]
22
-    ];
16
+		self::MODE_DEFAULT => [
17
+			self::STANDARD => '{{name}} does not macth',
18
+		],
19
+		self::MODE_NEGATIVE => [
20
+			self::STANDARD => '{{name}} does not macth negative',
21
+		]
22
+	];
23 23
 }
24 24
\ No newline at end of file
Please login to merge, or discard this patch.