Created
April 12, 2015 09:41
-
-
Save geerteltink/8d58570433699127d909 to your computer and use it in GitHub Desktop.
PhpStorm file and code templates (Apache Velocity)
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
#set($typeHintText = "$TYPE_HINT ") | |
## First we check against a blacklist of primitive and other common types used in documentation. | |
#set($nonTypeHintableTypes = ["", "string", "int", "mixed", "number", "void", "object", "real", "double", "float", "resource", "null", "bool", "boolean"]) | |
#foreach($nonTypeHintableType in $nonTypeHintableTypes) | |
#if ($nonTypeHintableType == $TYPE_HINT) | |
#set($typeHintText = "") | |
#end | |
#end | |
## Make sure the type hint actually looks like a legal php class name(permitting namespaces too) for future proofing reasons. | |
## This is important because PSR-5 is coming soon, and will allow documentation of types with syntax like SplStack<int> | |
#if (!$TYPE_HINT.matches('^((\\)?[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]+)+$')) | |
#set($typeHintText = "") | |
#end | |
## Next, we check if this is using the array syntax like "MyClass[]", and type hint it as a plain array | |
#if ($TYPE_HINT.endsWith("[]")) | |
#set($typeHintText = "array ") | |
#end | |
/** | |
* @param ${TYPE_HINT} $${PARAM_NAME} | |
#if (${STATIC} != "static" && ${NAME} != "Id") | |
* | |
* @return $this | |
#end | |
*/ | |
public ${STATIC} function set${NAME}($typeHintText$${PARAM_NAME}) | |
{ | |
#if (${STATIC} == "static") | |
self::$${FIELD_NAME} = $${PARAM_NAME}; | |
#else | |
$this->${FIELD_NAME} =#if (${TYPE_HINT} == "boolean") (bool)#end $${PARAM_NAME}; | |
#if (${NAME} != "Id") return $this;#end | |
#end | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment