Skip to content

Commit

Permalink
Merge branch '5.3' into 5.4
Browse files Browse the repository at this point in the history
* 5.3:
  CS fix
  CS fix
  CS fixes
  Bump Symfony version to 5.3.4
  Update VERSION for 5.3.3
  Update CHANGELOG for 5.3.3
  Bump Symfony version to 5.2.12
  Update VERSION for 5.2.11
  Update CHANGELOG for 5.2.11
  Bump Symfony version to 4.4.27
  Update VERSION for 4.4.26
  Update CONTRIBUTORS for 4.4.26
  Update CHANGELOG for 4.4.26
  • Loading branch information
nicolas-grekas committed Jun 30, 2021
2 parents 1913562 + 6211b22 commit 85e655b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Transport/BeanstalkdReceiver.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class BeanstalkdReceiver implements ReceiverInterface, MessageCountAwareInterfac
private $connection;
private $serializer;

public function __construct(Connection $connection, ?SerializerInterface $serializer = null)
public function __construct(Connection $connection, SerializerInterface $serializer = null)
{
$this->connection = $connection;
$this->serializer = $serializer ?? new PhpSerializer();
Expand Down
2 changes: 1 addition & 1 deletion Transport/BeanstalkdSender.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class BeanstalkdSender implements SenderInterface
private $connection;
private $serializer;

public function __construct(Connection $connection, ?SerializerInterface $serializer = null)
public function __construct(Connection $connection, SerializerInterface $serializer = null)
{
$this->connection = $connection;
$this->serializer = $serializer ?? new PhpSerializer();
Expand Down
2 changes: 1 addition & 1 deletion Transport/BeanstalkdTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class BeanstalkdTransport implements TransportInterface, MessageCountAwareInterf
private $receiver;
private $sender;

public function __construct(Connection $connection, ?SerializerInterface $serializer = null)
public function __construct(Connection $connection, SerializerInterface $serializer = null)
{
$this->connection = $connection;
$this->serializer = $serializer ?? new PhpSerializer();
Expand Down

0 comments on commit 85e655b

Please sign in to comment.