Skip to content

Commit

Permalink
Merge branch '6.4' into 7.0
Browse files Browse the repository at this point in the history
* 6.4:
  fix typo
  Add types to private and internal properties
  [Workflow] Cleaning code
  [Scheduler] Fix NPE in debug:scheduler command
  • Loading branch information
nicolas-grekas committed Jul 25, 2023
2 parents 055b361 + 5528357 commit c464a8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Transport/PostmarkApiTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class PostmarkApiTransport extends AbstractApiTransport

private string $key;

private $messageStream;
private ?string $messageStream = null;

public function __construct(string $key, HttpClientInterface $client = null, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{
Expand Down
2 changes: 1 addition & 1 deletion Transport/PostmarkSmtpTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/
class PostmarkSmtpTransport extends EsmtpTransport
{
private $messageStream;
private ?string $messageStream = null;

public function __construct(string $id, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{
Expand Down

0 comments on commit c464a8c

Please sign in to comment.