Skip to content

Commit b3b746f

Browse files
committed
Added missing mixed return types
1 parent 92f4bdb commit b3b746f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Form/StreetType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public function getParent()
2323
return TextType::class;
2424
}
2525

26-
public function transform(mixed $value)
26+
public function transform(mixed $value): mixed
2727
{
2828
return (string)$value;
2929
}
3030

31-
public function reverseTransform(mixed $value)
31+
public function reverseTransform(mixed $value): mixed
3232
{
3333
return new Street((string)$value);
3434
}

0 commit comments

Comments
 (0)