Completed
Pull Request — master (#72)
by Nate
03:35
created

HeaderParamHandler   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 39
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 3
lcom 1
cbo 3
dl 39
loc 39
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 5 5 1
A apply() 6 6 2

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) Nate Brunette.
4
 * Distributed under the MIT License (http://opensource.org/licenses/MIT)
5
 */
6
7
declare(strict_types=1);
8
9
namespace Tebru\Retrofit\Internal\ParameterHandler;
10
11
use Tebru\Retrofit\Internal\RequestBuilder;
12
use Tebru\Retrofit\StringConverter;
13
14
/**
15
 * Class HeaderParamHandler
16
 *
17
 * @author Nate Brunette <[email protected]>
18
 */
19 View Code Duplication
final class HeaderParamHandler extends AbstractParameterHandler
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...
20
{
21
    /**
22
     * @var StringConverter
23
     */
24
    private $converter;
25
26
    /**
27
     * @var string
28
     */
29
    private $name;
30
31
    /**
32
     * Constructor
33
     *
34
     * @param StringConverter $converter
35
     * @param string $name
36
     */
37
    public function __construct(StringConverter $converter, string $name)
38
    {
39
        $this->converter = $converter;
40
        $this->name = $name;
41
    }
42
43
    /**
44
     * Set a value to the [@see RequestBuilder] for parameter type
45
     *
46
     * @param RequestBuilder $requestBuilder
47
     * @param mixed $value
48
     * @return void
49
     * @throws \RuntimeException
50
     */
51
    public function apply(RequestBuilder $requestBuilder, $value): void
52
    {
53
        foreach ($this->getListValues($value) as $element) {
54
            $requestBuilder->addHeader($this->name, $this->converter->convert($element));
55
        }
56
    }
57
}
58