Solved bugs to allow unit tests to run

This commit is contained in:
Kevin Frantz
2018-11-15 19:55:03 +01:00
parent 647bc81965
commit de66375ee0
9 changed files with 61 additions and 42 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Entity\Source\Data\Name;
use Doctrine\ORM\Mapping as ORM;
/**
* @author kevinfrantz
* @ORM\Table(name="source_data_name_surname")
* @ORM\Entity()
*/
final class SurnameSource extends AbstractNameSource implements SurnameSourceInterface
{
}