1 <?php
2
3 namespace Docoflow\Contracts;
4
5 /**
6 * Trait cannot create a constant, so, we should move this to an interface. Implements this contract to a class, then trait can access this constant.
7 *
8 * @author Krisan Alfa Timur <krisanalfa@gmail.com>
9 */
10 interface ValidationStatus
11 {
12 const UNPROCESSED = 0;
13 const APPROVED = 1;
14 const PARTIAL = 2;
15 const REJECTED = 3;
16 const INVALID = 4;
17 }
18