mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Declared AbstractNameSource as abstract and adapted paths for usersource
This commit is contained in:
@@ -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;
|
||||
|
||||
|
@@ -1,9 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Source\Data;
|
||||
namespace App\Entity\Source\Combination;
|
||||
|
||||
use App\Entity\Attribut\UserAttributInterface;
|
||||
use App\Entity\Attribut\PersonIdentitySourceAttributInterface;
|
||||
use App\Entity\Source\Data\DataSourceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
|
@@ -4,6 +4,6 @@ namespace App\Entity\Source\Data\Name;
|
||||
|
||||
use App\Entity\Source\Data\AbstractDataSource;
|
||||
|
||||
class AbstractNameSource extends AbstractDataSource implements NameSourceInterface
|
||||
abstract class AbstractNameSource extends AbstractDataSource implements NameSourceInterface
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user