summaryrefslogtreecommitdiff
path: root/.emacs.d/mysnippets/text-mode/php-mode/ife
blob: eca1f0123775f0a8795be824bf37eda312538260 (plain)
1
2
3
4
5
6
7
8
9
10
#name : php if (...) { ... } else { ... }
# --
if (${1:condition})
{
    $0
}
else
{

}