always-open/laravel-model-auditlog

View on GitHub
src/EventType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace AlwaysOpen\AuditLog;

class EventType
{
    const CREATED = 1;
    const UPDATED = 2;
    const DELETED = 3;
    const RESTORED = 4;
    const FORCE_DELETED = 5;
    const PIVOT_DELETED = 6;
}