Skip to content

Commit

Permalink
Watch params naming
Browse files Browse the repository at this point in the history
  • Loading branch information
asika32764 committed Dec 14, 2024
1 parent 87b4371 commit 795ea9b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/orm/src/Attributes/Watch.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,13 @@ class Watch implements AttributeInterface

public const BEFORE_SAVE = 1 << 0;

/**
* @deprecated Use INCLUDE_CREATE instead.
*/
public const ON_CREATE = 1 << 1;

public const INCLUDE_CREATE = 1 << 1;

public const INCLUDE_UPDATE_WHERE = 1 << 2;

/**
Expand Down

0 comments on commit 795ea9b

Please sign in to comment.