Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Core\Actions;
3
4enum ActionResponseStatus: string
5{
6    /**
7     * Resource was properly created.
8     */
9    case CREATED = 'created';
10    /**
11     * Action was properly executed.
12     */
13    case SUCCESS = 'success';
14
15    /**
16     * Resource was properly deleted
17     */
18    case DELETED = 'deleted';
19
20    /**
21     * Permission denied or authorization required error
22     */
23    case AUTHORIZATION_ERROR = 'authorization_error';
24
25    /**
26     * There is something wrong with the input.
27     * For example if it is an API CALL the request body has invalid data.
28     */
29    case CLIENT_ERROR = 'client_error';
30
31    /**
32     * {id} placeholder in route could not be found.
33     */
34    case NOT_FOUND = 'not_found';
35
36    /**
37     * There is something wrong with storing the entity.
38     *
39     * For example: database error, unique constraints, etc.
40     */
41    case PERISTENCE_ERROR = 'persistence_error';
42
43    /**
44     * There is something wrong with displaying the result of the action.
45     */
46    case OUTPUT_ERROR = 'output_error';
47
48    /**
49     * Any other error is considered a server error.
50     */
51    case SERVER_ERROR = 'server_error';
52}