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 ( 20c89b...8e64c8 )
by Florian
03:16
created
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.
StingerSoftEntitySearchBundle.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
  */
18 18
 class StingerSoftEntitySearchBundle extends Bundle {
19 19
 
20
+	/**
21
+	 * @param string $env
22
+	 */
20 23
 	public static function getRequiredBundles($env) {
21 24
 		$bundles = array();
22 25
 		$bundles['StingerSoftEntitySearchBundle'] = '\StingerSoft\EntitySearchBundle\StingerSoftEntitySearchBundle';
Please login to merge, or discard this patch.
Services/Mapping/DocumentToEntityMapperInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 	 * Tries to create a document from the given object
26 26
 	 *
27 27
 	 * @param ObjectManager $manager        	
28
-	 * @param object $object        	
29 28
 	 * @return boolean|Document Returns false if no document could be created
30 29
 	 */
31 30
 	public function getEntity(ObjectManager $manager, Document $document);
Please login to merge, or discard this patch.
Model/Query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
 	 *
105 105
 	 * @param string $name
106 106
 	 *        	Name of the property to set
107
-	 * @param mixed $value
107
+	 * @param string[] $value
108 108
 	 *        	The value of the property
109 109
 	 */
110 110
 	public function __set($name, $value) {
Please login to merge, or discard this patch.