-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0123363
commit e2d83d4
Showing
3 changed files
with
42 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* This file is part of friendsofhyperf/components. | ||
* | ||
* @link https://github.com/friendsofhyperf/components | ||
* @document https://github.com/friendsofhyperf/components/blob/main/README.md | ||
* @contact [email protected] | ||
*/ | ||
|
||
namespace FriendsOfHyperf\Trigger; | ||
|
||
/** | ||
* @deprecated since v3.1, will removed in 3.2, use \MySQLReplication\Definitions\ConstEventsNames instead | ||
*/ | ||
enum ConstEventsNames: string | ||
{ | ||
case XID = 'xid'; | ||
case DELETE = 'delete'; | ||
case QUERY = 'query'; | ||
case ROTATE = 'rotate'; | ||
case GTID = 'gtid'; | ||
case MARIADB_GTID = 'mariadb gtid'; | ||
case UPDATE = 'update'; | ||
case HEARTBEAT = 'heartbeat'; | ||
case TABLE_MAP = 'tableMap'; | ||
case WRITE = 'write'; | ||
case FORMAT_DESCRIPTION = 'format description'; | ||
case ROWS_QUERY = 'rows_query'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters