Declared AbstractNameSource as abstract and adapted paths for usersource

This commit is contained in:
Kevin Frantz
2018-11-11 21:12:21 +01:00
parent 43cdc6fa0b
commit ea20f7562a
5 changed files with 9 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Entity\Source\Data;
namespace App\Entity\Source\Combination;
use Doctrine\ORM\Mapping as ORM;
use App\Entity\Attribut\UserAttribut;
@@ -12,7 +12,7 @@ use Entity\Attribut\PersonIdentityAttribut;
* @ORM\Table(name="source_data_user")
* @ORM\Entity(repositoryClass="App\Repository\UserSourceRepository")
*/
class UserSource extends AbstractDataSource implements UserSourceInterface
class UserSource extends AbstractCombinationSource implements UserSourceInterface
{
use UserAttribut,PersonIdentityAttribut;