mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-08-28 13:48:13 +02:00
update
This commit is contained in:
parent
e53a643e3d
commit
1ab37bd478
209 changed files with 79957 additions and 0 deletions
26
my-snippets/laravel5/snippets/hash.json
Normal file
26
my-snippets/laravel5/snippets/hash.json
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"Hash-check.sublime-snippet": {
|
||||
"prefix": "Hash::check",
|
||||
"body": [
|
||||
"Hash::check(${1:\\$value}, ${2:\\$hashedValue})$3"
|
||||
],
|
||||
"description": "Check the given plain value against a hash."
|
||||
},
|
||||
"Hash-make.sublime-snippet": {
|
||||
"prefix": "Hash::make",
|
||||
"body": [
|
||||
"Hash::make(${1:\\$value})$2"
|
||||
],
|
||||
"description": "Hash the given value."
|
||||
},
|
||||
"Hash-needsRehash.sublime-snippet": {
|
||||
"prefix": "Hash::needsRehash",
|
||||
"body": [
|
||||
"if (Hash::needsRehash(${1:\\$hashedValue}))",
|
||||
"{",
|
||||
" ${2:\\$hashed} = Hash::make(${3:\\$value});",
|
||||
"}$4"
|
||||
],
|
||||
"description": "Check if the given hash has been hashed using the given options."
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue