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 (e8886b)
by Florian
04:22
created
Tests/AbstractORMTestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 	/**
89 89
 	 * Creates default mapping driver
90 90
 	 *
91
-	 * @return \Doctrine\ORM\Mapping\Driver\Driver
91
+	 * @return AnnotationDriver
92 92
 	 */
93 93
 	protected function getMetadataDriverImplementation() {
94 94
 		return new AnnotationDriver($_ENV['annotation_reader']);
Please login to merge, or discard this patch.
Tests/bootstrap.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,12 +9,12 @@
 block discarded – undo
9 9
 define('TESTS_TEMP_DIR', __DIR__.'/temp');
10 10
 define('VENDOR_PATH', realpath(__DIR__.'/../vendor'));
11 11
 if (!class_exists('PHPUnit_Framework_TestCase') ||
12
-    version_compare(PHPUnit_Runner_Version::id(), '3.5') < 0
12
+	version_compare(PHPUnit_Runner_Version::id(), '3.5') < 0
13 13
 ) {
14
-    die('PHPUnit framework is required, at least 3.5 version');
14
+	die('PHPUnit framework is required, at least 3.5 version');
15 15
 }
16 16
 if (!class_exists('PHPUnit_Framework_MockObject_MockBuilder')) {
17
-    die('PHPUnit MockObject plugin is required, at least 1.0.8 version');
17
+	die('PHPUnit MockObject plugin is required, at least 1.0.8 version');
18 18
 }
19 19
 /** @var $loader ClassLoader */
20 20
 $loader = require __DIR__.'/../vendor/autoload.php';
Please login to merge, or discard this patch.