This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate
the same code in three or more different places, we strongly encourage you to
look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.
Loading history...
12
{
13
/**
14
* @var MessageFactory
15
*/
16
private $messageFactory;
17
18
/**
19
* @param MessageFactory $messageFactory
20
*/
21
1
public function __construct(MessageFactory $messageFactory)
22
{
23
1
$this->messageFactory = $messageFactory;
24
1
}
25
26
/**
27
* {@inheritdoc}
28
*/
29
1
public function createClient(array $config = [])
30
{
31
1
if (!class_exists('Http\Client\Socket\Client')) {
32
throw new \LogicException('To use the Socket client you need to install the "php-http/socket-client" package.');
33
}
34
35
1
return new Client($this->messageFactory, $config);
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.