Skip to content

Commit b492f70

Browse files
committed
remove constructor argument type-hint
The child class Message does not call the parent constructor which means that the $message property will never be initialized when using CPP.
1 parent 2bacd10 commit b492f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Mime/RawMessage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class RawMessage
2424
* @param iterable<string>|string|resource $message
2525
*/
2626
public function __construct(
27-
private mixed $message,
27+
private $message,
2828
) {
2929
}
3030

0 commit comments

Comments
 (0)