You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->assertSame('Function AssertDocblock\validateStringArrayIfTrue() never returns false so the return type can be changed to true.', $errors[0]->getMessage());
1104
-
$this->assertSame(17, $errors[0]->getLine());
1105
-
$this->assertSame('Function AssertDocblock\validateStringArrayIfFalse() never returns true so the return type can be changed to false.', $errors[1]->getMessage());
1106
-
$this->assertSame(25, $errors[1]->getLine());
1107
-
$this->assertSame('Function AssertDocblock\validateStringOrIntArray() never returns true so the return type can be changed to false.', $errors[2]->getMessage());
1108
-
$this->assertSame(34, $errors[2]->getLine());
1109
-
$this->assertSame('Function AssertDocblock\validateStringOrNonEmptyIntArray() never returns true so the return type can be changed to false.', $errors[3]->getMessage());
1110
-
$this->assertSame(44, $errors[3]->getLine());
1111
-
$this->assertSame('Call to method AssertDocblock\A::testInt() with string will always evaluate to false.', $errors[4]->getMessage());
1112
-
$this->assertSame(218, $errors[4]->getLine());
1113
-
$this->assertSame('Call to method AssertDocblock\A::testNotInt() with string will always evaluate to true.', $errors[5]->getMessage());
1114
-
$this->assertSame(224, $errors[5]->getLine());
1115
-
$this->assertSame('Call to method AssertDocblock\A::testInt() with int will always evaluate to true.', $errors[6]->getMessage());
1116
-
$this->assertSame(232, $errors[6]->getLine());
1117
-
$this->assertSame('Call to method AssertDocblock\A::testNotInt() with int will always evaluate to false.', $errors[7]->getMessage());
1118
-
$this->assertSame(238, $errors[7]->getLine());
1102
+
$this->assertCount(4, $errors);
1103
+
$this->assertSame('Call to method AssertDocblock\A::testInt() with string will always evaluate to false.', $errors[0]->getMessage());
1104
+
$this->assertSame(218, $errors[0]->getLine());
1105
+
$this->assertSame('Call to method AssertDocblock\A::testNotInt() with string will always evaluate to true.', $errors[1]->getMessage());
1106
+
$this->assertSame(224, $errors[1]->getLine());
1107
+
$this->assertSame('Call to method AssertDocblock\A::testInt() with int will always evaluate to true.', $errors[2]->getMessage());
1108
+
$this->assertSame(232, $errors[2]->getLine());
1109
+
$this->assertSame('Call to method AssertDocblock\A::testNotInt() with int will always evaluate to false.', $errors[3]->getMessage());
0 commit comments