Optimized documentation and class naming

This commit is contained in:
Kevin Frantz
2019-01-19 22:52:49 +01:00
parent 71c7a7f080
commit 4b86acb372
24 changed files with 195 additions and 41 deletions

View File

@@ -4,6 +4,11 @@ namespace App\Domain\UserManagement;
use App\Entity\UserInterface;
/**
* Offers based on an user variable a user with a source.
*
* @author kevinfrantz
*/
interface UserSourceDirectorInterface
{
/**

View File

@@ -3,6 +3,10 @@
namespace App\Domain\UserManagement;
/**
* Offers UserSourceDirector to be used as a Service.
*
* @see UserSourceDirector
*
* @author kevinfrantz
*/
interface UserSourceDirectorServiceInterface extends UserSourceDirectorInterface