Deprecate constants

This commit is contained in:
James Cole
2024-11-07 03:29:44 +01:00
parent dbef5e2143
commit 9d0fd7ef1b
3 changed files with 14 additions and 0 deletions

View File

@@ -39,8 +39,11 @@ class AutoBudget extends Model
use ReturnsIntegerIdTrait;
use SoftDeletes;
/** @deprecated */
public const int AUTO_BUDGET_ADJUSTED = 3;
/** @deprecated */
public const int AUTO_BUDGET_RESET = 1;
/** @deprecated */
public const int AUTO_BUDGET_ROLLOVER = 2;
protected $fillable = ['budget_id', 'amount', 'period'];