mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
15 lines
243 B
PHP
15 lines
243 B
PHP
<?php
|
|
|
|
namespace Infinito\Domain\User;
|
|
|
|
/**
|
|
* Offers UserSourceDirector to be used as a Service.
|
|
*
|
|
* @see UserSourceDirector
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface UserSourceDirectorServiceInterface extends UserSourceDirectorInterface
|
|
{
|
|
}
|