We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07f9b2 commit eca383dCopy full SHA for eca383d
1 file changed
tests/IntervalTest.php
@@ -137,13 +137,12 @@ public static function exclusiveDataProvider(): Iterator
137
];
138
}
139
140
- /**
141
- * @param int[] $data
142
- */
143
public function testNoSpaceIntervalIsExclusiveOf(): void
144
{
145
$this->expectException(InvalidArgumentException::class);
146
- $this->expectExceptionMessage('The difference between min and max must be greater than 1 for an exclusive interval.');
+ $this->expectExceptionMessage(
+ 'The difference between min and max must be greater than 1 for an exclusive interval.'
+ );
147
148
$data = [1, 2, 3];
149
$filter = static fn($datum): bool => $datum > 1;
0 commit comments