Skip to content

Commit

Permalink
Fix PHP 7.2 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Jun 1, 2020
1 parent 61f0af9 commit 47874da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Wamp/WampConnectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Gos\Component\WebSocketClient\Wamp;

use Gos\Component\WebSocketClient\Wamp\Client;
use Gos\Component\WebSocketClient\Wamp\ClientInterface;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerAwareTrait;
use Symfony\Component\OptionsResolver\OptionsResolver;
Expand All @@ -12,7 +10,10 @@ final class WampConnectionFactory implements WampConnectionFactoryInterface, Log
{
use LoggerAwareTrait;

private array $config;
/**
* @var array
*/
private $config;

public function __construct(array $config)
{
Expand Down

0 comments on commit 47874da

Please sign in to comment.