Completed
Pull Request — master (#55)
by Márk
13:00 queued 03:01
created

ReactFactory::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 4
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
3
namespace Http\HttplugBundle\ClientFactory;
4
5
use Http\Adapter\React\Client;
6
use Http\Message\MessageFactory;
7
8
/**
9
 * @author Tobias Nyholm <[email protected]>
10
 */
11 View Code Duplication
class ReactFactory implements ClientFactory
1 ignored issue
show
Duplication introduced by
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
    public function __construct(MessageFactory $messageFactory)
22
    {
23
        $this->messageFactory = $messageFactory;
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    public function createClient(array $config = [])
30
    {
31
        if (!class_exists('Http\Adapter\React\Client')) {
32
            throw new \LogicException('To use the React adapter you need to install the "php-http/react-adapter" package.');
33
        }
34
35
        return new Client($this->messageFactory);
0 ignored issues
show
Bug Best Practice introduced by
The return type of return new \Http\Adapter...$this->messageFactory); (Http\Adapter\React\Client) is incompatible with the return type declared by the interface Http\HttplugBundle\Clien...ntFactory::createClient of type Http\Client\HttpClient.

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
36
    }
37
}
38