| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class Observe |
||
| 10 | { |
||
| 11 | public const RETRIEVED = 'retrieved'; |
||
| 12 | |||
| 13 | public const CREATING = 'creating'; |
||
| 14 | public const CREATED = 'created'; |
||
| 15 | |||
| 16 | public const UPDATING = 'updating'; |
||
| 17 | public const UPDATED = 'updated'; |
||
| 18 | |||
| 19 | public const DELETING = 'deleting'; |
||
| 20 | public const DELETED = 'deleted'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string[] |
||
| 24 | */ |
||
| 25 | public static function all() |
||
| 38 |