Total Complexity | 4 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class RequestChangeArticle extends AbstractRequestArticle |
||
6 | { |
||
7 | /** @var bool */ |
||
8 | private $resetCounter; |
||
9 | |||
10 | /** |
||
11 | * @return string |
||
12 | */ |
||
13 | protected function getId() |
||
16 | } |
||
17 | |||
18 | /** |
||
19 | * @param bool $resetCounter |
||
20 | */ |
||
21 | public function setResetCounter($resetCounter) |
||
22 | { |
||
23 | $this->resetCounter = $resetCounter; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return mixed[] |
||
28 | */ |
||
29 | protected function getParams() |
||
38 | } |
||
39 | } |
||
40 |