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 ( faf42c...1e1560 )
by Haven
02:41
created
bootstrap/app.php 1 patch
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
 $app = new \Slim\App([
Please login to merge, or discard this patch.
tests/unit/UserTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
 */
6 6
 class UserTest extends \PHPUnit\Framework\TestCase
7 7
 {
8
-    public function testThatWeCanGetEmail()
9
-    {
10
-        // $user = \App\Models\User::find(1);
11
-        // $this->assertEquals($user->email, '[email protected]');
12
-        $this->assertTrue(true);
13
-    }
8
+	public function testThatWeCanGetEmail()
9
+	{
10
+		// $user = \App\Models\User::find(1);
11
+		// $this->assertEquals($user->email, '[email protected]');
12
+		$this->assertTrue(true);
13
+	}
14 14
 }
15 15
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/SampleTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,8 +5,8 @@
 block discarded – undo
5 5
 */
6 6
 class SampleTest extends \PHPUnit\Framework\TestCase
7 7
 {
8
-    public function testTrueAssertsToTrue()
9
-    {
10
-        $this->assertTrue(true);
11
-    }
8
+	public function testTrueAssertsToTrue()
9
+	{
10
+		$this->assertTrue(true);
11
+	}
12 12
 }
13 13
\ No newline at end of file
Please login to merge, or discard this patch.