Skip to content

Commit dafa74e

Browse files
committed
Fixed type issues from DateDimension entity integration tests
1 parent fa86ad5 commit dafa74e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Integration/Entity/DateDimensionTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class DateDimensionTest extends EntityTestCase
4141
#[TestDox('No setter for `$property` property in read only entity - so cannot test this')]
4242
#[Override]
4343
public function testThatSetterOnlyAcceptSpecifiedType(
44-
?string $property = null,
45-
?string $type = null,
44+
string $property,
45+
string $type,
4646
FieldMapping|AssociationMapping|null $meta,
4747
): void {
4848
self::markTestSkipped('There is not setter in read only entity...');
@@ -55,9 +55,9 @@ public function testThatSetterOnlyAcceptSpecifiedType(
5555
#[TestDox('No setter for `$property` property in read only entity - so cannot test this')]
5656
#[Override]
5757
public function testThatSetterReturnsInstanceOfEntity(
58-
?string $property = null,
59-
?string $type = null,
60-
FieldMapping|AssociationMapping|null $meta = null
58+
string $property,
59+
string $type,
60+
FieldMapping|AssociationMapping|null $meta,
6161
): void {
6262
self::markTestSkipped('There is not setter in read only entity...');
6363
}

0 commit comments

Comments
 (0)