Last active
May 16, 2017 09:09
-
-
Save tfbenrowe/df4ead34f74dee115f27979a56025166 to your computer and use it in GitHub Desktop.
phpstorm templates
This file contains hidden or 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
| /** | |
| * Class ${NAME} | |
| * | |
| #if (${NAMESPACE}) * @package ${NAMESPACE} | |
| #end | |
| */ |
This file contains hidden or 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
| <?php | |
| #parse("PHP File Header.php") | |
| #if (${NAMESPACE}) | |
| namespace ${NAMESPACE}; | |
| #end | |
| class ${NAME} | |
| { | |
| } |
This file contains hidden or 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
| // empty |
This file contains hidden or 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
| <?php | |
| #parse("PHP File Header.php") | |
| #if (${NAMESPACE}) | |
| namespace ${NAMESPACE}; | |
| #end | |
| interface ${NAME} | |
| { | |
| } |
This file contains hidden or 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
| <?php | |
| #parse("PHP File Header.php") | |
| #if (${NAMESPACE}) | |
| namespace ${NAMESPACE}; | |
| #end | |
| trait ${NAME} | |
| { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment