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
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.
app/Validation/Rules/EmailAvailable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 
17 17
 	public function validate($input)
18 18
 	{
19
-		return User::where('email',$input)->count() === 0;
19
+		return User::where('email', $input)->count() === 0;
20 20
 	}
21 21
 }
22 22
\ No newline at end of file
Please login to merge, or discard this patch.
app/Auth/Auth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 	{
27 27
 		$user = User::where('email', $email)->first();
28 28
 
29
-		if (! $user) {
29
+		if (!$user) {
30 30
 			return false;
31 31
 		}
32 32
 
Please login to merge, or discard this patch.