forked from neild3r/vscode-php-docblocker
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
6 changed files
with
79 additions
and
18 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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "php-docblocker", | ||
"displayName": "PHP DocBlocker", | ||
"description": "A simple, dependency free PHP specific DocBlocking package", | ||
"version": "0.3.3", | ||
"version": "0.4.0", | ||
"publisher": "neilbrayfield", | ||
"author": "Neil Brayfield <[email protected]>", | ||
"engines": { | ||
|
@@ -59,4 +59,4 @@ | |
"@types/node": "^6.0.40", | ||
"@types/mocha": "^2.2.32" | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,50 +1,62 @@ | ||
[ | ||
{ | ||
"key": "public", | ||
"name": "Public" | ||
"name": "Public", | ||
"var": "[type]" | ||
}, | ||
{ | ||
"key": "protected", | ||
"name": "Protected" | ||
"name": "Protected", | ||
"var": "[type]" | ||
}, | ||
{ | ||
"key": "static", | ||
"name": "Static" | ||
"name": "Static", | ||
"var": "[type]" | ||
}, | ||
{ | ||
"key": "static-alternate", | ||
"name": "Static Alternate" | ||
"name": "Static Alternate", | ||
"var": "[type]" | ||
}, | ||
{ | ||
"key": "default-string", | ||
"name": "Default String" | ||
"name": "Default String", | ||
"var": "string" | ||
}, | ||
{ | ||
"key": "default-string-alternate", | ||
"name": "Default String Alternate" | ||
"name": "Default String Alternate", | ||
"var": "string" | ||
}, | ||
{ | ||
"key": "default-bool", | ||
"name": "Default Bool" | ||
"name": "Default Bool", | ||
"var": "boolean" | ||
}, | ||
{ | ||
"key": "default-bool-alternate", | ||
"name": "Default Bool Alternate" | ||
"name": "Default Bool Alternate", | ||
"var": "boolean" | ||
}, | ||
{ | ||
"key": "default-array", | ||
"name": "Default Array" | ||
"name": "Default Array", | ||
"var": "array" | ||
}, | ||
{ | ||
"key": "default-array-alternate", | ||
"name": "Default Array Alternate" | ||
"name": "Default Array Alternate", | ||
"var": "array" | ||
}, | ||
{ | ||
"key": "multiline", | ||
"name": "Multiline" | ||
"name": "Multiline", | ||
"var": "array" | ||
}, | ||
{ | ||
"key": "multiline-alternate", | ||
"name": "Multiline Alternate" | ||
"name": "Multiline Alternate", | ||
"var": "array" | ||
} | ||
] |
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