Test Setup Failed
Push — master ( 4168c9...c3df72 )
by
unknown
04:59 queued 48s
created
tests/DataValues/TimeValueCalculatorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	 * @param string $time an ISO 8601 date and time
31 31
 	 * @param int $timezone offset from UTC in minutes
32 32
 	 *
33
-	 * @return TimeValue
33
+	 * @return \PHPUnit\Framework\MockObject\MockObject
34 34
 	 */
35 35
 	private function getTimeValueMock( $time, $timezone = 0 ) {
36 36
 		$timeValue = $this->getMockBuilder( TimeValue::class )
Please login to merge, or discard this patch.
tests/ValueParsers/PhpDateTimeParserTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	}
41 41
 
42 42
 	/**
43
-	 * @return ValueParser
43
+	 * @return \PHPUnit\Framework\MockObject\MockObject
44 44
 	 */
45 45
 	private function getEraParser() {
46 46
 		$mock = $this->createMock( ValueParser::class );
Please login to merge, or discard this patch.
tests/ValueParsers/YearTimeParserTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	}
34 34
 
35 35
 	/**
36
-	 * @return EraParser
36
+	 * @return \PHPUnit\Framework\MockObject\MockObject
37 37
 	 */
38 38
 	private function getMockEraParser() {
39 39
 		$mock = $this->getMockBuilder( EraParser::class )
Please login to merge, or discard this patch.