MultiHttpAdapterException::removeResponses()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 6
Ratio 100 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
dl 6
loc 6
ccs 5
cts 5
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 3
nc 2
nop 1
crap 2
1
<?php
2
3
/*
4
 * This file is part of the Ivory Http Adapter package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\HttpAdapter;
13
14
use Ivory\HttpAdapter\Message\ResponseInterface;
15
16
/**
17
 * @author GeLo <[email protected]>
18
 */
19 View Code Duplication
class MultiHttpAdapterException extends \Exception
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...
20
{
21
    /**
22
     * @var array
23
     */
24
    private $exceptions;
25
26
    /**
27
     * @var array
28
     */
29
    private $responses;
30
31
    /**
32
     * @param array $exceptions
33
     * @param array $responses
34
     */
35 354
    public function __construct(array $exceptions = [], array $responses = [])
36
    {
37 354
        parent::__construct('An error occurred when sending multiple requests.');
38
39 354
        $this->setExceptions($exceptions);
40 354
        $this->setResponses($responses);
41 354
    }
42
43 345
    public function clearExceptions()
44
    {
45 345
        $this->exceptions = [];
46 345
    }
47
48
    /**
49
     * @return bool
50
     */
51 54
    public function hasExceptions()
52
    {
53 54
        return !empty($this->exceptions);
54
    }
55
56
    /**
57
     * @return array
58
     */
59 273
    public function getExceptions()
60
    {
61 273
        return $this->exceptions;
62
    }
63
64
    /**
65
     * @param array $exceptions
66
     */
67 345
    public function setExceptions(array $exceptions)
68
    {
69 345
        $this->clearExceptions();
70 345
        $this->addExceptions($exceptions);
71 345
    }
72
73
    /**
74
     * @param array $exceptions
75
     */
76 345
    public function addExceptions(array $exceptions)
77
    {
78 345
        foreach ($exceptions as $exception) {
79 264
            $this->addException($exception);
80 267
        }
81 345
    }
82
83
    /**
84
     * @param array $exceptions
85
     */
86 9
    public function removeExceptions(array $exceptions)
87
    {
88 9
        foreach ($exceptions as $exception) {
89 9
            $this->removeException($exception);
90 7
        }
91 9
    }
92
93
    /**
94
     * @param HttpAdapterException $exception
95
     *
96
     * @return bool
97
     */
98 45
    public function hasException(HttpAdapterException $exception)
99
    {
100 45
        return array_search($exception, $this->exceptions, true) !== false;
101
    }
102
103
    /**
104
     * @param HttpAdapterException $exception
105
     */
106 282
    public function addException(HttpAdapterException $exception)
107
    {
108 282
        $this->exceptions[] = $exception;
109 282
    }
110
111
    /**
112
     * @param HttpAdapterException $exception
113
     */
114 18
    public function removeException(HttpAdapterException $exception)
115
    {
116 18
        unset($this->exceptions[array_search($exception, $this->exceptions, true)]);
117 18
        $this->exceptions = array_values($this->exceptions);
118 18
    }
119
120 345
    public function clearResponses()
121
    {
122 345
        $this->responses = [];
123 345
    }
124
125
    /**
126
     * @return bool
127
     */
128 81
    public function hasResponses()
129
    {
130 81
        return !empty($this->responses);
131
    }
132
133
    /**
134
     * @return array
135
     */
136 264
    public function getResponses()
137
    {
138 264
        return $this->responses;
139
    }
140
141
    /**
142
     * @param array $responses
143
     */
144 345
    public function setResponses(array $responses)
145
    {
146 345
        $this->clearResponses();
147 345
        $this->addResponses($responses);
148 345
    }
149
150
    /**
151
     * @param array
152
     */
153 345
    public function addResponses(array $responses)
154
    {
155 345
        foreach ($responses as $response) {
156 246
            $this->addResponse($response);
157 267
        }
158 345
    }
159
160
    /**
161
     * @param array $responses
162
     */
163 9
    public function removeResponses(array $responses)
164
    {
165 9
        foreach ($responses as $response) {
166 9
            $this->removeResponse($response);
167 7
        }
168 9
    }
169
170
    /**
171
     * @param ResponseInterface $response
172
     *
173
     * @return bool
174
     */
175 45
    public function hasResponse(ResponseInterface $response)
176
    {
177 45
        return array_search($response, $this->responses, true) !== false;
178
    }
179
180
    /**
181
     * @param ResponseInterface $response
182
     */
183 264
    public function addResponse(ResponseInterface $response)
184
    {
185 264
        $this->responses[] = $response;
186 264
    }
187
188
    /**
189
     * @param ResponseInterface $response
190
     */
191 18
    public function removeResponse(ResponseInterface $response)
192
    {
193 18
        unset($this->responses[array_search($response, $this->responses, true)]);
194 18
        $this->responses = array_values($this->responses);
195 18
    }
196
}
197