Skip to content

Commit 1ce871b

Browse files
linting
1 parent e04a6ff commit 1ce871b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/Validator/IndexTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,11 +382,11 @@ public function testIndexWithNoAttributeSupport(): void
382382
],
383383
]);
384384

385-
$validator = new Index(attributes:$collection->getAttribute('attributes'), indexes:$collection->getAttribute('indexes'), maxLength:768);
385+
$validator = new Index(attributes: $collection->getAttribute('attributes'), indexes: $collection->getAttribute('indexes'), maxLength: 768);
386386
$index = $collection->getAttribute('indexes')[0];
387387
$this->assertFalse($validator->isValid($index));
388388

389-
$validator = new Index(attributes: $collection->getAttribute('attributes'), indexes:$collection->getAttribute('indexes'), maxLength: 768, supportForAttributes:false);
389+
$validator = new Index(attributes: $collection->getAttribute('attributes'), indexes: $collection->getAttribute('indexes'), maxLength: 768, supportForAttributes: false);
390390
$index = $collection->getAttribute('indexes')[0];
391391
$this->assertTrue($validator->isValid($index));
392392
}

0 commit comments

Comments
 (0)