Skip to content

Commit f1aacb5

Browse files
committed
chore: wip
1 parent 69d8c6d commit f1aacb5

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

.vscode/stacks.code-snippets

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
},
1313
"Stacks Function": {
1414
"scope": "typescript",
15-
"prefix": "fun",
15+
"prefix": "func",
1616
"body": [
17-
"protected function $1($2)",
17+
"public function $1($2)",
1818
"{",
1919
" $3",
2020
"}"
@@ -23,15 +23,37 @@
2323
},
2424
"Stacks Method": {
2525
"scope": "typescript",
26-
"prefix": "fun",
26+
"prefix": "met",
2727
"body": [
28-
"protected function $1($2)",
28+
"public function $1($2)",
2929
"{",
3030
" $3",
3131
"}"
3232
],
3333
"description": "Alias of the Stacks Function snippet"
3434
},
35+
"Stacks Protected Method": {
36+
"scope": "typescript",
37+
"prefix": "pmet",
38+
"body": [
39+
"protected function $1($2)",
40+
"{",
41+
" $3",
42+
"}"
43+
],
44+
"description": "Bootstrap a Protected Function"
45+
},
46+
"Stacks Protected Function": {
47+
"scope": "typescript",
48+
"prefix": "pfunct",
49+
"body": [
50+
"protected function $1($2)",
51+
"{",
52+
" $3",
53+
"}"
54+
],
55+
"description": "Alias of the Protected Function snippet"
56+
},
3557
"Print to console": {
3658
"scope": "javascript,typescript",
3759
"prefix": "clo",

config/models/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Models
2+
3+
Your models are defined in this folder.

0 commit comments

Comments
 (0)