mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-16 11:53:31 +01:00
18 lines
405 B
PHP
18 lines
405 B
PHP
<?php
|
|
|
|
namespace App\Domain\RequestManagement\Action;
|
|
|
|
use App\Attribut\ActionTypeAttributInterface;
|
|
use App\Domain\RequestManagement\User\RequestedUserInterface;
|
|
|
|
/**
|
|
* An action containes multiple attributes which are neccessary to process a request.
|
|
*
|
|
* @see ActionType
|
|
*
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RequestedActionInterface extends ActionTypeAttributInterface, RequestedUserInterface
|
|
{
|
|
}
|