-
Notifications
You must be signed in to change notification settings - Fork 16
/
PHP fprochazka.xml
21 lines (21 loc) · 1.16 KB
/
PHP fprochazka.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<templateSet group="PHP fprochazka">
<template name="fore" value="foreach ($SELECTION$ as $$$VAR_VALUE$) { $END$ } " description="foreach(iterable_expr as $value) {...}" toReformat="true" toShortenFQNames="true">
<variable name="VAR_VALUE" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="PHP" value="true" />
</context>
</template>
<template name="forek" value="foreach ($SELECTION$ as $$$VAR_KEY$ => $$$VAR_VALUE$) { $END$ } " description="foreach(iterable_expr as $key => $value) {...}" toReformat="true" toShortenFQNames="true">
<variable name="VAR_KEY" expression="" defaultValue="" alwaysStopAt="true" />
<variable name="VAR_VALUE" expression="" defaultValue="" alwaysStopAt="true" />
<context>
<option name="PHP" value="true" />
</context>
</template>
<template name="thr" value="throw new $CLASS$;" description="throw new" toReformat="true" toShortenFQNames="true">
<variable name="CLASS" expression="classNameComplete()" defaultValue="" alwaysStopAt="true" />
<context>
<option name="PHP" value="true" />
</context>
</template>
</templateSet>