Created
July 22, 2020 13:58
-
-
Save AlexVanderbist/cc5a6e0cf25b1404f8f12ca7caf7ba4b to your computer and use it in GitHub Desktop.
PhpStorm arrow function live template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template name="fn" value="fn ($TYPE$ $INSTANCE$) => $INSTANCE$$END$" description="Arrow function" toReformat="false" toShortenFQNames="true"> | |
<variable name="TYPE" expression="completeSmart()" defaultValue="" alwaysStopAt="true" /> | |
<variable name="INSTANCE" expression="concat("$", camelCase(TYPE))" defaultValue="" alwaysStopAt="false" /> | |
<context> | |
<option name="PHP Expression" value="true" /> | |
<option name="PHP Statement" value="true" /> | |
</context> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment