aboutsummaryrefslogtreecommitdiffstats
path: root/oni-php/snippets/php-mode/function-statement
blob: 6a1cbe6ea1f4b9d0bdbacd94f0c0a012c2efc6f1 (plain)
1
2
3
4
5
6
7
8
9
10
# -*- mode: snippet -*-
# name: function statement
# key: f
# --
/**
 * $5
 */
${1:private} function $2($3): ${4:void} {
  $0
}