Total Complexity | 3 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class CRssfeed { |
||
8 | |||
9 | /** |
||
10 | * Properties |
||
11 | * |
||
12 | */ |
||
13 | private $options = array(); |
||
|
|||
14 | private $url; |
||
15 | private $heading; |
||
16 | private $items; |
||
17 | |||
18 | /** |
||
19 | * Constructor |
||
20 | * |
||
21 | * @param array $options to alter the default behaviour. |
||
22 | */ |
||
23 | 2 | public function __construct($options=array()) { |
|
27 | 2 | } |
|
28 | |||
29 | 1 | public function readRSS(){ |
|
56 |
This check marks private properties in classes that are never used. Those properties can be removed.