Skip to content

Commit 46bb8e8

Browse files
committed
minor symfony#57975 [Mime] remove constructor argument type-hint (xabbuh)
This PR was merged into the 7.1 branch. Discussion ---------- [Mime] remove constructor argument type-hint | Q | A | ------------- | --- | Branch? | 7.1 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT The child class Message does not call the parent constructor which means that the $message property will never be initialized when using CPP. Commits ------- b492f70 remove constructor argument type-hint
2 parents 2bacd10 + b492f70 commit 46bb8e8

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)