Refactored relation and node draft

This commit is contained in:
Kevin Frantz
2018-10-27 14:56:26 +02:00
parent 7734f57c63
commit a95ff0497e
24 changed files with 260 additions and 160 deletions

View File

@@ -2,10 +2,12 @@
namespace App\Structur\Facade\Security\Source;
use App\Entity\Source\NameSourceInterface;
use App\Entity\Source\SourceInterface;
use App\Entity\UserInterface;
use App\Entity\Source\UserSourceInterface;
use App\DBAL\Types\RightType;
use App\DBAL\Types\LayerType;
use Doctrine\Common\Collections\Collection;
/**
*
@@ -62,4 +64,36 @@ class UserSourceFacade extends AbstractSourceFacade implements UserSourceInterfa
* @todo Implement
*/
}
public function setSource(SourceInterface $source): void
{
/**
*
* @todo Implement
*/
}
public function getGroupSources(): Collection
{
/**
*
* @todo Implement
*/
}
public function getSource(): SourceInterface
{
/**
*
* @todo Implement
*/
}
public function setGroupSources(Collection $groups): void
{
/**
*
* @todo Implement
*/
}
}