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 ( 2e65de...a5ebf2 )
by Lukáš
01:47
created
src/DI/ProxyExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\DI;
5 5
 
Please login to merge, or discard this patch.
tests/Mock/Service2.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\DI;
5 5
 
Please login to merge, or discard this patch.
tests/Mock/Service1.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\DI;
5 5
 
Please login to merge, or discard this patch.
tests/Mock/IService2Factory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\DI;
5 5
 
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4
-require_once __DIR__ . '/../vendor/autoload.php';
4
+require_once __DIR__.'/../vendor/autoload.php';
Please login to merge, or discard this patch.
src/Console/GenerateProxiesCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\DI;
5 5
 
Please login to merge, or discard this patch.
tests/DI/ProxyExtensionTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\Tests;
5 5
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 {
14 14
 	public function testExtension()
15 15
 	{
16
-		$tempDir = __DIR__ . '/../temp/DI';
16
+		$tempDir = __DIR__.'/../temp/DI';
17 17
 		if (!@mkdir($tempDir, 0777, true) && !is_dir($tempDir)) {
18 18
 			throw new \RuntimeException(sprintf('Cannot create temp directory %s', $tempDir));
19 19
 		}
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		$container = (new Configurator())
27 27
 			->setTempDirectory($tempDir)
28 28
 			->setDebugMode(true)
29
-			->addConfig(__DIR__ . '/../config/config.neon')
29
+			->addConfig(__DIR__.'/../config/config.neon')
30 30
 			->createContainer();
31 31
 		$container->initialize();
32 32
 
Please login to merge, or discard this patch.
tests/Console/GenerateProxiesCommandTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\Tests\Console;
5 5
 
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 {
12 12
 	public function testCommand()
13 13
 	{
14
-		$tempDir = __DIR__ . '/../temp/Console';
14
+		$tempDir = __DIR__.'/../temp/Console';
15 15
 		if (!@mkdir($tempDir, 0777, true) && !is_dir($tempDir)) {
16 16
 			throw new \RuntimeException(sprintf('Cannot create temp directory %s', $tempDir));
17 17
 		}
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 		$container = (new Configurator())
25 25
 			->setTempDirectory($tempDir)
26 26
 			->setDebugMode(true)
27
-			->addConfig(__DIR__ . '/../config/config.neon')
27
+			->addConfig(__DIR__.'/../config/config.neon')
28 28
 			->createContainer();
29 29
 		$container->initialize();
30 30
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 		$tester = new CommandTester($application->find('lookyman:nette-proxy:generate'));
34 34
 		$tester->execute(['command' => 'lookyman:nette-proxy:generate']);
35 35
 
36
-		self::assertFileExists(__DIR__ . '/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockIService2FactoryGeneratedee1449ea0da0fdbf038d28254e9c7b3f.php');
37
-		self::assertFileExists(__DIR__ . '/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockService1Generateda427b08305d9796d18525e91e7b08e56.php');
36
+		self::assertFileExists(__DIR__.'/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockIService2FactoryGeneratedee1449ea0da0fdbf038d28254e9c7b3f.php');
37
+		self::assertFileExists(__DIR__.'/../temp/proxies/ProxyManagerGeneratedProxy__PM__LookymanNetteProxyTestsMockService1Generateda427b08305d9796d18525e91e7b08e56.php');
38 38
 	}
39 39
 }
Please login to merge, or discard this patch.
tests/Helpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Lookyman\Nette\Proxy\DI;
5 5
 
Please login to merge, or discard this patch.