Removed final from entity classes
This commit is contained in:
parent
7ac24e4abf
commit
fcaf8592e6
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ use JsonSerializable;
|
||||||
|
|
||||||
#[ORM\Entity]
|
#[ORM\Entity]
|
||||||
#[ORM\Table(name: 'keys')]
|
#[ORM\Table(name: 'keys')]
|
||||||
final class Key implements JsonSerializable
|
class Key implements JsonSerializable
|
||||||
{
|
{
|
||||||
#[ORM\Id]
|
#[ORM\Id]
|
||||||
#[ORM\Column(type: 'integer', options: ['unsigned' => true])]
|
#[ORM\Column(type: 'integer', options: ['unsigned' => true])]
|
||||||
|
|
|
@ -7,7 +7,7 @@ use Doctrine\ORM\Mapping as ORM;
|
||||||
|
|
||||||
#[ORM\Entity]
|
#[ORM\Entity]
|
||||||
#[ORM\Table(name: 'attributes')]
|
#[ORM\Table(name: 'attributes')]
|
||||||
final class SystemAttribute
|
class SystemAttribute
|
||||||
{
|
{
|
||||||
#[ORM\Id]
|
#[ORM\Id]
|
||||||
#[ORM\Column]
|
#[ORM\Column]
|
||||||
|
|
Loading…
Reference in a new issue