Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit 0832e87

Browse files
author
Tito Costa
committed
changed entity to a mappedsuperclass so we can redifine it as an entity in the project
1 parent 23d0f90 commit 0832e87

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

Entity/FormErrorLog.php

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,11 @@
66
use Oh\FormErrorLogBundle\Entity\FormErrorLogEntityInterface;
77

88
/**
9-
* @ORM\Table(name="form_error_log")
10-
* @ORM\Entity()
9+
* @ORM\MappedSuperclass()
1110
* @ORM\HasLifecycleCallbacks()
1211
*/
1312
class FormErrorLog implements FormErrorLogEntityInterface
1413
{
15-
1614
/**
1715
* @var integer $id
1816
*
@@ -24,7 +22,7 @@ class FormErrorLog implements FormErrorLogEntityInterface
2422

2523
/**
2624
* @ORM\Column(name="form_name", type="string", length=255)
27-
* @var type
25+
* @var string
2826
*/
2927
private $form_name;
3028

@@ -132,5 +130,4 @@ public function setCreatedValue()
132130
{
133131
$this->created = new \DateTime();
134132
}
135-
136133
}

0 commit comments

Comments
 (0)