Simpliefied SourceSources

This commit is contained in:
Kevin Frantz
2018-10-25 22:35:11 +02:00
parent 4bd1078491
commit 7734f57c63
8 changed files with 75 additions and 317 deletions

View File

@@ -17,7 +17,7 @@ use App\Entity\Node;
* @ORM\Table(name="source")
* @ORM\InheritanceType("JOINED")
* @ORM\DiscriminatorColumn(name="discr", type="string")
* @ORM\DiscriminatorMap({"user" = "UserSource","name" = "NameSource","collection" = "SourceCollection"})
* @ORM\DiscriminatorMap({"user" = "UserSource","name" = "NameSource","collection" = "SourcesSource"})
*/
abstract class AbstractSource extends AbstractEntity implements SourceInterface
{