for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Monitor\Model;
/**
* @Entity @Table(name="services")
**/
class Service
{
* @Id @Column(type="integer") @GeneratedValue
private $id;
* @Column(type="string")
private $name;
private $dbcolumns;
* @Column(type="boolean")
private $percentages;
$percentages
This check marks private properties in classes that are never used. Those properties can be removed.
private $resize;
private $show_graph;
private $show_numbers;
public function getId()
return $this->id;
}
public function getName()
return $this->name;
public function getDBColumns()
return $this->dbcolumns;
public function getResize()
return $this->resize;
public function getShowGraph()
return $this->show_graph;
public function getShowNumbers()
return $this->show_numbers;
This check marks private properties in classes that are never used. Those properties can be removed.