18 lines
405 B
PHP
Raw Normal View History

<?php
namespace App\Domain\RequestManagement\Action;
2019-01-20 10:41:58 +01:00
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
{
}