Completed
Push — master ( 463d73...47ba96 )
by Gerrit
02:04
created

RequestArgumentFactory   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 41
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 8
lcom 1
cbo 2
dl 41
loc 41
ccs 0
cts 14
cp 0
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 4 4 1
A understandsString() 4 4 2
A understandsArray() 4 4 3
A createArgumentFromString() 9 9 1
A createArgumentFromArray() 6 6 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
/**
3
 * Copyright (C) 2018 Gerrit Addiks.
4
 * This package (including this file) was released under the terms of the GPL-3.0.
5
 * You should have received a copy of the GNU General Public License along with this program.
6
 * If not, see <http://www.gnu.org/licenses/> or send me a mail so i can send you a copy.
7
 *
8
 * @license GPL-3.0
9
 *
10
 * @author Gerrit Addiks <[email protected]>
11
 */
12
13
namespace Addiks\SymfonyGenerics\Arguments\ArgumentFactory;
14
15
use Addiks\SymfonyGenerics\Arguments\ArgumentFactory\ArgumentFactory;
16
use Addiks\SymfonyGenerics\Arguments\Argument;
17
use Addiks\SymfonyGenerics\Arguments\RequestArgument;
18
use Symfony\Component\HttpFoundation\RequestStack;
19
use Webmozart\Assert\Assert;
20
21 View Code Duplication
final class RequestArgumentFactory implements ArgumentFactory
0 ignored issues
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...
22
{
23
24
    /**
25
     * @var RequestStack
26
     */
27
    private $requestStack;
28
29
    public function __construct(RequestStack $requestStack)
30
    {
31
        $this->requestStack = $requestStack;
32
    }
33
34
    public function understandsString(string $source): bool
35
    {
36
        return strpos($source, '$') === 0 && strlen($source) > 1;
37
    }
38
39
    public function understandsArray(array $source): bool
40
    {
41
        return isset($source['key']) && isset($source['type']) && $source['type'] === 'request';
42
    }
43
44
    public function createArgumentFromString(string $source): Argument
45
    {
46
        Assert::startsWith($source, "$");
47
48
        /** @var string $key */
49
        $key = substr($source, 1);
50
51
        return new RequestArgument($this->requestStack, $key);
52
    }
53
54
    public function createArgumentFromArray(array $source): Argument
55
    {
56
        Assert::keyExists($source, 'key');
57
58
        return new RequestArgument($this->requestStack, $source['key']);
59
    }
60
61
}
62