| 1 | <?php |
||
| 23 | class RevokeUserRoleService implements ApplicationService |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * The command handler. |
||
| 27 | * |
||
| 28 | * @var RevokeUserRoleHandler |
||
| 29 | */ |
||
| 30 | private $handler; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Constructor. |
||
| 34 | * |
||
| 35 | * @param RevokeUserRoleHandler $aHandler The command handler |
||
| 36 | */ |
||
| 37 | public function __construct(RevokeUserRoleHandler $aHandler) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function execute($request = null) |
||
| 49 | } |
||
| 50 |