Skip to content

Commit

Permalink
Add enum snippet for php (#511)
Browse files Browse the repository at this point in the history
  • Loading branch information
c24-tj authored Dec 2, 2024
1 parent 2f12a93 commit 8a934f9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions snippets/php/php.json
Original file line number Diff line number Diff line change
Expand Up @@ -251,5 +251,16 @@
"prefix": "vd",
"body": ["var_dump($0);"],
"description": "var_dump"
},
"enum …": {
"prefix": "enum",
"body": [
"enum ${1:EnumName}",
"{",
"\tcase $0;",
"}",
""
],
"description": "Enum definition"
}
}

0 comments on commit 8a934f9

Please sign in to comment.