| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class TrackingUpdate extends Model |
||
| 10 | { |
||
| 11 | public const TABLE_KEY = 'tracking_updates'; |
||
| 12 | public const COLUMN_TRACKABLE_IDENTIFIER = 'trackable_identifier'; |
||
| 13 | public const COLUMN_TRACKABLE_TYPE = 'trackable_type'; |
||
| 14 | public const COLUMN_STATUS_IDENTIFIER = 'status_identifier'; |
||
| 15 | |||
| 16 | protected $guarded = []; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function getTable() |
||
| 27 |