Created
August 20, 2014 18:19
-
-
Save JordanDalton/7f3eea970f356b51c3b5 to your computer and use it in GitHub Desktop.
Simple PHPStorm file template for creating a Eloquent-extended model inside of a namespace.
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
#if (${NAMESPACE}) | |
<?php namespace ${NAMESPACE}; | |
#else | |
<?php | |
#end | |
use Eloquent; | |
class ${NAME} extends Eloquent { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment