Passed
Push — master ( cb35bf...01d583 )
by Marius
35s
created
tests/unit/ByPropertyIdGrouperTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 	}
159 159
 
160 160
 	/**
161
-	 * @return PropertyIdProvider[]
161
+	 * @return \PHPUnit_Framework_MockObject_MockObject[]
162 162
 	 */
163 163
 	private function getPropertyIdProviders() {
164 164
 		return [
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 	 * @param string $propertyId
177 177
 	 * @param string|null $type
178 178
 	 *
179
-	 * @return PropertyIdProvider
179
+	 * @return \PHPUnit_Framework_MockObject_MockObject
180 180
 	 */
181 181
 	private function getPropertyIdProviderMock( $propertyId, $type = null ) {
182 182
 		$propertyIdProvider = $this->createMock( Snak::class );
Please login to merge, or discard this patch.
tests/unit/Lookup/DisabledEntityTypesEntityLookupTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class DisabledEntityTypesEntityLookupTest extends \PHPUnit_Framework_TestCase {
18 18
 
19 19
 	/**
20
-	 * @return EntityLookup
20
+	 * @return \PHPUnit_Framework_MockObject_MockObject
21 21
 	 */
22 22
 	private function getEntityLookup() {
23 23
 		$entityLookup = $this->createMock( EntityLookup::class );
Please login to merge, or discard this patch.
tests/unit/Lookup/DispatchingEntityLookupTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
 	/**
79 79
 	 * @param Exception $exception
80 80
 	 *
81
-	 * @return EntityLookup
81
+	 * @return \PHPUnit_Framework_MockObject_MockObject
82 82
 	 */
83 83
 	private function getExceptionThrowingLookup( Exception $exception ) {
84 84
 		$lookup = $this->createMock( EntityLookup::class );
Please login to merge, or discard this patch.
tests/unit/Lookup/RedirectResolvingEntityLookupTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 	}
40 40
 
41 41
 	/**
42
-	 * @return EntityLookup
42
+	 * @return \PHPUnit_Framework_MockObject_MockObject
43 43
 	 */
44 44
 	public function getLookupDouble() {
45 45
 		$mock = $this->createMock( EntityLookup::class );
Please login to merge, or discard this patch.
tests/unit/Lookup/RestrictedEntityLookupTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class RestrictedEntityLookupTest extends \PHPUnit_Framework_TestCase {
18 18
 
19 19
 	/**
20
-	 * @return EntityLookup
20
+	 * @return \PHPUnit_Framework_MockObject_MockObject
21 21
 	 */
22 22
 	private function getEntityLookup() {
23 23
 		$entityLookup = $this->createMock( EntityLookup::class );
Please login to merge, or discard this patch.
tests/unit/Statement/Grouper/FilteringStatementGrouperTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	/**
22 22
 	 * @param string $propertyId
23 23
 	 *
24
-	 * @return StatementFilter
24
+	 * @return \PHPUnit_Framework_MockObject_MockObject
25 25
 	 */
26 26
 	private function newStatementFilter( $propertyId = 'P1' ) {
27 27
 		$filter = $this->createMock( StatementFilter::class );
Please login to merge, or discard this patch.