SomeEntity
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 18
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Zenify\DoctrineMigrations\Tests\Entity;
6
7
use Doctrine\ORM\Mapping as ORM;
8
9
10
/**
11
 * @ORM\Entity
12
 * @ORM\Table
13
 */
14
class SomeEntity
15
{
16
17
	/**
18
	 * @ORM\Id
19
	 * @ORM\Column(type="integer")
20
	 * @ORM\GeneratedValue(strategy="AUTO")
21
	 * @var int
22
	 */
23
	private $id;
0 ignored issues
show
Unused Code introduced by
The property $id is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
24
25
	/**
26
	 * @ORM\Column(type="string")
27
	 * @var string
28
	 */
29
	private $name;
0 ignored issues
show
Unused Code introduced by
The property $name is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
30
31
}
32