Skip to content

Instantly share code, notes, and snippets.

@JordanDalton
Created August 20, 2014 18:19
Show Gist options
  • Save JordanDalton/7f3eea970f356b51c3b5 to your computer and use it in GitHub Desktop.
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.
#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