for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Zenify\DoctrineMigrations\Tests\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table
*/
class SomeEntity
{
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
* @var int
private $id;
$id
This check marks private properties in classes that are never used. Those properties can be removed.
* @ORM\Column(type="string")
* @var string
private $name;
$name
}
This check marks private properties in classes that are never used. Those properties can be removed.