1 | <?php |
||
21 | abstract class OverviewCommand extends Command implements CommandInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | protected $from; |
||
27 | |||
28 | /** |
||
29 | * @var int |
||
30 | */ |
||
31 | protected $to; |
||
32 | |||
33 | /** |
||
34 | * @var array |
||
35 | */ |
||
36 | protected $format; |
||
37 | |||
38 | /** |
||
39 | * Constructor. |
||
40 | * |
||
41 | * @param int $from the article number where the range begins |
||
42 | * @param int $to the article number where the range ends |
||
43 | * @param array $format the format of the articles in response |
||
44 | */ |
||
45 | 14 | public function __construct($from, $to, array $format) |
|
53 | |||
54 | 2 | public function onOverviewInformationFollows(MultiLineResponse $response) |
|
68 | |||
69 | 2 | public function onNoNewsGroupCurrentSelected(Response $response) |
|
73 | |||
74 | 2 | public function onNoArticlesSelected(Response $response) |
|
78 | } |
||
79 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.