1
0
Fork 0
chezmoi/dot_config/nvim/snippets/php.snippets

15 lines
336 B
Text

snippet child
[
'table' => '${1}',
'this' => 'id',
'there' => '${1}Id',
'route' => '${2:default}',
],
snippet parent
[
'table' => '${1}',
'this' => '${1}Id',
'there' => 'id',
'route' => '${2:default}',
],