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 (c3568e)
by Dmitry
02:20
created
src/Junker/Silex/Provider/YamlConfigurationServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,16 +38,16 @@
 block discarded – undo
38 38
 
39 39
 	public function register(Application $app)
40 40
 	{
41
-		$app['config'] = $app->share(function () 
41
+		$app['config'] = $app->share(function() 
42 42
 		{
43 43
 			if ($this->cache_dir)
44 44
 			{
45 45
 				$cache = $this->getConfigCacheFactory()->cache($this->cache_dir.'/config.cache.php',
46
-					function (ConfigCacheInterface $cache)
46
+					function(ConfigCacheInterface $cache)
47 47
 					{
48 48
 						$config = $this->loadConfig();
49 49
 
50
-						$content = sprintf('<?php use Junker\Silex\Config; $c = new Config(%s);', var_export($config->data, TRUE)) . PHP_EOL;
50
+						$content = sprintf('<?php use Junker\Silex\Config; $c = new Config(%s);', var_export($config->data, TRUE)).PHP_EOL;
51 51
 						$content .= 'return $c;';
52 52
 
53 53
 						$cache->write($content, $config->getResources());
Please login to merge, or discard this patch.
src/Junker/Silex/YamlFileLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 		return $data;
68 68
 	}
69 69
 
70
-	private function parseImports(Config &$config, $file)
70
+	private function parseImports(Config&$config, $file)
71 71
 	{
72 72
 
73 73
 
Please login to merge, or discard this patch.