1 | <?php |
||
7 | class Service |
||
8 | { |
||
9 | /** |
||
10 | * @Id @Column(type="integer") @GeneratedValue |
||
11 | **/ |
||
12 | private $id; |
||
13 | /** |
||
14 | * @Column(type="string") |
||
15 | **/ |
||
16 | private $name; |
||
17 | /** |
||
18 | * @Column(type="string") |
||
19 | **/ |
||
20 | private $dbcolumns; |
||
21 | /** |
||
22 | * @Column(type="boolean") |
||
23 | **/ |
||
24 | private $percentages; |
||
|
|||
25 | /** |
||
26 | * @Column(type="boolean") |
||
27 | **/ |
||
28 | private $resize; |
||
29 | /** |
||
30 | * @Column(type="boolean") |
||
31 | **/ |
||
32 | private $show_graph; |
||
33 | /** |
||
34 | * @Column(type="boolean") |
||
35 | **/ |
||
36 | private $show_numbers; |
||
37 | |||
38 | public function getId() |
||
42 | |||
43 | public function getName() |
||
47 | |||
48 | public function getDBColumns() |
||
52 | |||
53 | public function getResize() |
||
57 | |||
58 | public function getShowGraph() |
||
62 | |||
63 | public function getShowNumbers() |
||
67 | } |
||
68 |
This check marks private properties in classes that are never used. Those properties can be removed.