Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Jun 30, 2021
1 parent 7ca9b2c commit 6211b22
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 6211b22

Please sign in to comment.