Files
emacs/snippets/php-mode/foreach
2024-04-30 07:08:23 +02:00

9 lines
185 B
Plaintext

# -*- mode: snippet -*-
# contributor: USAMI Kenta <tadsan@zonu.me>
# name: foreach
# key: foreach
# group : control structure
# --
foreach (${1:$expression} as \$${2:value}) {
$0
}