ILIAS  trunk Revision v12.0_alpha-1227-g7ff6d300864
Command.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23enum Command: string
24{
25 case VIEW = 'view';
26 case BLOCK = 'block';
27 case UNBLOCK = 'unblock';
28 case PUBLISH = 'publish';
29 case WITHDRAW = 'withdraw';
30 case CONFIRM_WITHDRAW = 'confirmWithdraw';
31 case SUBMIT = 'submit';
32 case ACCEPT = 'accept';
33 case CONFIRM_ACCEPT = 'confirmAccept';
34 case REJECT = 'reject';
35 case CONFIRM_REJECT = 'confirmReject';